a prime number by 51b

import std.metastrings;template p(int n){static if(n)const p=Format!(n)~p!(n-1);else const p="";}pragma(msg,p!(82));

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

download

return to the top page