Skip to content

Instantly share code, notes, and snippets.

@mcquinne
Last active August 29, 2015 14:00
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 mcquinne/99caf0cd5a190a432927 to your computer and use it in GitHub Desktop.
Save mcquinne/99caf0cd5a190a432927 to your computer and use it in GitHub Desktop.
afternoon delight!
#!/usr/bin/env groovy
def rocketParts = [
' /\\',
'/ \\',
' ||',
' ||',
' ||',
' ||',
' ||',
' __',
'/ \\',
' **',
' **',
]
def air = ''
10.times { rocketParts += air }
while ( true ) {
rocketParts.each {
println it
sleep 100
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment