Created
March 7, 2016 13:44
-
-
Save teddykishi/343f1cb963dfc79a04ba to your computer and use it in GitHub Desktop.
Console Art
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var str = "", i = 10000; while(i){ str += Math.random() > .5 ? "1" : "0"; i--; }; str |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment