257 by KirarinSnow

-module(b).
-export([m/0]).
m()->p(2).
p(37)->0;p(N)->io:format(string:join(["~.","B
"],integer_to_list(N)),[257]),p(N+1).

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

download

return to the top page