2009-12-01から1ヶ月間の記事一覧
本日のErlang Lite #2の予習なんだけど,もう眠くなったのであきらめる!! なので中途半端に途中までw. Ex.3-1 %% ex1.erl -module(ex1). -compile(export_all). sum(1) -> 1; sum(N) -> N + sum(N-1). sum(N, M) -> if N == M -> N; N < M -> M + sum(N, M-1)…
本日のErlang Lite #2の予習なんだけど,もう眠くなったのであきらめる!! なので中途半端に途中までw. Ex.3-1 %% ex1.erl -module(ex1). -compile(export_all). sum(1) -> 1; sum(N) -> N + sum(N-1). sum(N, M) -> if N == M -> N; N < M -> M + sum(N, M-1)…