Christoph
Member since Feb 27, 2011
- Profile: /members/7889-christoph.htm
- Comments: 1
Recent Blog Comments By Christoph
-
Seven Languages In Seven Weeks: Erlang - Day 1
Posted on Feb 27, 2011 at 11:09 AM
Thanks, your solutions helped me - as always - a lot to do my homework. FYI: I think I've found a much easier (IMHO) solution of the count to ten: -module(count). -export([count_to_ten/0]). count_to(1) -> io:format("1~n"); count_to(N) -> count_to(N-1), io:format("~w~n&... read more »