Expression for appreciation by 51b

-module(a).
-export([m/0]).
m()->f(2,1). f(11,_)->0;f(N,X)->io:format("~9w * 9 +~3w = ~w
",[X,N,M=9*X+N]),f(N+1,M+X).

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page