Skip to content

Instantly share code, notes, and snippets.

@selfsame
Created October 26, 2014 23:28
Show Gist options
  • Save selfsame/6a3685ea7841fb374a29 to your computer and use it in GitHub Desktop.
Save selfsame/6a3685ea7841fb374a29 to your computer and use it in GitHub Desktop.
1 PRINT "<!DOCTYPE html>"
2 PRINT "<html>"
3 PRINT "<head>"
4 PRINT "<style>"
5 PRINT "body{font-size: 20px; line-height: 14px; word-wrap:break-word;}"
6 PRINT "</style>"
7 PRINT "</head>"
8 PRINT "<body>"
9 PRINT "<hr>"
10 I = 0
11 DO
12 IF RND(1)<0.5 THEN
13 PRINT CHR$(47)
14 ELSE
15 PRINT CHR$(92)
16 END IF
17 I = I + 1
18 LOOP UNTIL I > 60000
19 PRINT "</body>"
20 PRINT "</html>"
21 QUIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment