Created
May 13, 2014 13:28
-
-
Save Azeirah/cdd9fe95d7f2a42c9e6b to your computer and use it in GitHub Desktop.
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
function init () { | |
instr(parseInt('0000110000', 2)); | |
instr(parseInt('0000110000', 2)); | |
instr(parseInt('0000110000', 2)); | |
instr(parseInt('0000111000', 2)); | |
instr(parseInt('0000001000', 2)); | |
instr(parseInt('0000000001', 2)); | |
instr(parseInt('0000000100', 2)); | |
instr(parseInt('0000001111', 2)); | |
} | |
function writeCharacter (char) { | |
instr(1024 + char); | |
} | |
function clear () { | |
instr(parseInt('00000001', 2)); | |
} | |
init(); | |
writeCharacter(65); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment