a prime number by Lost_dog

-module(o).
-export([m/0]).
m()->m(82).
m(0)->e;
m(X)->io:format("~b",[X]),m(X-1).

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

download

return to the top page