Rino Del Campo
Member since May 23, 2012
- Profile: /members/9988-rino-del-campo.htm
- URL: http://brain-debug.org
- Comments: 1
Recent Blog Comments By Rino Del Campo
-
Seven Languages In Seven Weeks: Erlang - Day 1
Posted on May 23, 2012 at 7:14 PM
A more quick solution to "count to ten" problem. The function requires, as input, a number from which to start counting. I hope this is useful to other readers. -module(count). -export([to_ten/1]). to_ten(10) -> 10; to_ten(N) -> io:format( "~w... ", [N] ), to_... read more »