Skip to content

Instantly share code, notes, and snippets.

@jasonrclark
Created November 6, 2015 05:27
Show Gist options
  • Save jasonrclark/2c618833de3e81fcf058 to your computer and use it in GitHub Desktop.
Save jasonrclark/2c618833de3e81fcf058 to your computer and use it in GitHub Desktop.
Rocket!
# http://github.com/shoes/shoes4
# @jasonrclark
Shoes.app width: 450, height: 800 do
oval 150, 75, 150, 150, fill: blue
rect 100, 500, 250, 50, fill: red
rect 150, 150, 150, 400, fill: white
rect 150, 400, 75, 50, fill: black
every 0.01 do
5.times do
color = [red, orange, yellow, pink].sample
rect rand(150..300), 550, rand(2..5),
rand(50..250), fill: color, stroke: color
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment