Skip to content

Instantly share code, notes, and snippets.

@benwiley4000
Created February 9, 2019 22:05
Show Gist options
  • Save benwiley4000/ea7c0f641ad6ba87f67132d3e3ddf0be to your computer and use it in GitHub Desktop.
Save benwiley4000/ea7c0f641ad6ba87f67132d3e3ddf0be 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