あと for と while と continue と break があるらしい。そういう普通なのはいいや。
pass ってのが異様。
i@u ~/test/boo> cat pass.boo while false: print "end" i@u ~/test/boo> booi pass.boo pass.boo(2,1): BCE0044: Boo.Lang.Compiler.CompilerError: 'expecting "INDENT", found '<EOS>''. ---> pass.boo:2:1: expecting "INDENT", found '<EOS>'--- End of inner exception stack trace --- i@u ~/test/boo> cat pass.boo while false: pass print "end" i@u ~/test/boo> booi pass.boo end
要は nop だ。カラの文が無いとかまぁそんなこんなな話か。