Skip to content

Instantly share code, notes, and snippets.

@dattasaurabh82
Created February 3, 2019 06:04
Show Gist options
  • Save dattasaurabh82/182d1aa68b0f617c13c9e24a5ea5f4b3 to your computer and use it in GitHub Desktop.
Save dattasaurabh82/182d1aa68b0f617c13c9e24a5ea5f4b3 to your computer and use it in GitHub Desktop.
SCRIPT-8
draw = () => {
clear()
const lines = 11
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