Skip to content

v1.9.1

Compare
Choose a tag to compare
@ryuichiueda ryuichiueda released this 29 Sep 06:32
· 58 commits to master since this release

points of update

  • added a dictionary and a list for general purpose use.
$ seq 10 | opy '{D[NR%2]+=F1};E:["odd sum:", D[1], "\neven sum:", D[0] ]'
odd sum: 25 
even sum: 30
seq 10 | ./opy 'NR%2:{L.append(F1)};E:[L]'
[1, 3, 5, 7, 9]