2006-04-19から1日間の記事一覧

compiling...

nant-0.85-rc3 を make 。途中で止まったが bootstrap とやらができれば十分ぽいので気にしない。 i@u ~/bin> cat nant #!/bin/sh exec mono ~/src/nant-0.85-rc3/bootstrap/NAnt.exe $@boo-0.7.5.2013 を nant 。 default.build をいじって optimize を tru…

loop

あと 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:…

conditions

i@u ~/test/boo> cat cond.boo x = 0 if x == 1: print "x == 1" else: print "x != 1" i@u ~/test/boo> booi cond.boo x != 1 i@u ~/test/boo> cat cond.boo if x == 1: print "x == 1" else: print "x != 1" i@u ~/test/boo> booi cond.boo cond.boo(1,4):…

boo-mode.el

("\\.boo$" . python-mode)探すのめんどいから python-mode

hello.boo

i@u ~/test/boo> cat hello.boo print "hello world" print 'hello world' i@u ~/test/boo> booi hello.boo hello world hello world文字列リテラルはどっちでもいいのかなというかこれで改行入った。 i@u ~/test/boo> booc hello.boo i@u ~/test/boo> mono …

environment

基本は FC5 i@u ~/bin> cat booc #!/bin/sh exec mono /home/i/src/boo-0.7.5.2013/bin/booc.exe $@ i@u ~/bin> cat booi #!/bin/sh exec mono /home/i/src/boo-0.7.5.2013/bin/booi.exe $@ i@u ~/bin> cat booish #!/bin/sh exec mono /home/i/src/boo-0.7.…

testsprite.boo

http://shinh.skr.jp/misc/dat_dir/testsprite.booBoo がなかなか良さそうだなあと思ったので触ってみることにします。目指せ負け組脱出。とりあえず C の 55% くらいの速度は出てる感じ。 Events.KeyboardDown += def (sender, e as KeyboardEventArgs): if…

あらすじ: FC5 に apt-get したら mono が入った。

なにかあれば下記メールアドレスへ。
shinichiro.hamaji _at_ gmail.com
shinichiro.h