Skip to content

Instantly share code, notes, and snippets.

@halicki
Created January 30, 2019 11:02
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 halicki/bcf7c3ca41c4ade854b2ba1ac5a5d75a to your computer and use it in GitHub Desktop.
Save halicki/bcf7c3ca41c4ade854b2ba1ac5a5d75a to your computer and use it in GitHub Desktop.
SCRIPT-8
draw = () => {
clear()
const lines = 78
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