Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ajermakovics
Created February 2, 2019 13:43
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 ajermakovics/604a6415e21bcd74ea6fe61256e78440 to your computer and use it in GitHub Desktop.
Save ajermakovics/604a6415e21bcd74ea6fe61256e78440 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