Skip to content

Instantly share code, notes, and snippets.

@rodoviario
Created January 31, 2019 09:01
Show Gist options
  • Save rodoviario/040683f7b6a122833c0590a8001f32e1 to your computer and use it in GitHub Desktop.
Save rodoviario/040683f7b6a122833c0590a8001f32e1 to your computer and use it in GitHub Desktop.
SCRIPT-8
draw = () => {
clear()
const lines = 15
range(lines).forEach(i => {
print(8 * i, 8 * i, 'Hello world!', i % 7)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment