Skip to content

v0.6.4

Compare
Choose a tag to compare
@ryuichiueda ryuichiueda released this 07 Aug 01:26
· 2373 commits to main since this release

Finshed implementation of operations in arithmetic expansion

Followings are the examples of additional part from v0.6.3:

🍣 echo $(( A=10 , ++A ))
11
🍣 echo $(( B=1 , A= B ? 1 : 2 )) 
1
🍣 echo $(( B=-1 , B+=1 , A= B ? 1 : 2 ))
2