2004-01-01から1ヶ月間の記事一覧

fact = 0 -> 1 n -> n * fact(n - 1) 10.fact.to_string.println #virtical layout (like Python, Haskell) my_print = n -> n.to_string.println #horizontal layous (1+2 * 3).my_print 数字と文字列が入り交じったリストをprinしたかったんだけど、 softt…

PyScheme - is an implement of Scheme in Python. http://hkn.eecs.berkeley.edu/~dyoo/python/pyscheme/

merd

OCamlで書かれた言語。見出しにはRuby+Haskellと書かれてあったので興味あり。 Language study のページには各言語の文法の比較が載っている。 前にも書いたかもしれない。 println("Hello, world") "Hello, wordl".println # in cookbook. (but not impleme…