1000 digits by 51b

import std.random;void main(){Random g;g.seed=777;foreach(i;0..1000)printf("%d",g.next%2);}

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

download

return to the top page