2008-07-15から1日間の記事一覧

Haskell for C/C++ 階乗

Powered by dKingyo / 人口を増やす / 就職口を増やす | 256倍使うための本 | VB2005 | 明快入門 | Linux | CSSC言語 int fact(int x){ if(0==x) return 1; else return x * fact(x-1); } Haskell fact :: Int -> Int -- fact は Intの引数をとってIntを返す…

Haskell for C/C++ Introduction

Powered by dKingyo / 人口を増やす / 就職口を増やす | Vine Linux | プログラミング言語 | Red Hat | Windows Server | Mandriva 最近、やっとのことでHaskellはじめました。前々から、かじってはいたのですが、ノートとしてこの日記にまとめるのは今日か…