Skip to content

Instantly share code, notes, and snippets.

@Azeirah
Created May 13, 2014 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Azeirah/cdd9fe95d7f2a42c9e6b to your computer and use it in GitHub Desktop.
Save Azeirah/cdd9fe95d7f2a42c9e6b to your computer and use it in GitHub Desktop.
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