Skip to content

Instantly share code, notes, and snippets.

@benwiley4000
Created February 9, 2019 22:05
Show Gist options
  • Save benwiley4000/77117a3a829347e9fe6f8004af5900d5 to your computer and use it in GitHub Desktop.
Save benwiley4000/77117a3a829347e9fe6f8004af5900d5 to your computer and use it in GitHub Desktop.
SCRIPT-8
draw = () => {
clear()
const lines = 10
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