duplicate lines by mskzzzz

-module(z).
-export([m/0]).
p(eof)->1;p(S)->io:format(S++S),m().
m()->p(io:get_line('')).

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

download

return to the top page