Skip to content

Instantly share code, notes, and snippets.

@benwiley4000
Created February 9, 2019 22:04
Show Gist options
  • Save benwiley4000/c3febc6aa3edaeb21456f3c386e6f22c to your computer and use it in GitHub Desktop.
Save benwiley4000/c3febc6aa3edaeb21456f3c386e6f22c to your computer and use it in GitHub Desktop.
SCRIPT-8
draw = () => {
clear()
print(0, 0, 'Hello world!', 0)
print(8, 8, 'Hello world!', 1)
print(16, 16, 'Hello world!', 2)
print(24, 24, 'Hello world!', 3)
print(32, 32, 'Hello world!', 4)
print(40, 40, 'Hello world!', 5)
print(48, 48, 'Hello world!', 6)
print(56, 56, 'Hello world!', 5)
print(64, 64, 'Hello world!', 4)
print(72, 72, 'Hello world!', 2)
print(80, 80, 'Hello world!', 1)
print(88, 88, 'Hello world!', 0)
print(96, 102, 'Hello world!', 1)
print(106, 116, 'Hello world!', 2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment