Skip to content

v0.9.7

Latest
Compare
Choose a tag to compare
@ryuichiueda ryuichiueda released this 14 Dec 02:35
· 17 commits to main since this release

Enabled to use associative arrays

like this:

🍣 declare -A X
🍣 X[abc]=123
🍣 X[def]=456
🍣 echo ${X[def]}
456
🍣 echo ${X[@]}
123 456
🍣 Y=abc
🍣 echo ${X[$Y]}
123

Enjoy!