2009-05-01から1ヶ月間の記事一覧
hello,world bash-3.2$ ioke -I iik> "hello, world" println hello, world > nil 四則演算 bash-3.2$ ioke -I iik> foo = 3 > 3 iik> foo += 5 > 8 iik> foo println 8 > nil iik> bar = 2 > 2 iik> bar = bar -1 > 1 iik> -=(bar, 1) > 0 iik> baz = 5 * 3…