Skip to content

Instantly share code, notes, and snippets.

@shellandbull
Created March 9, 2014 11:15
Show Gist options
  • Save shellandbull/9446259 to your computer and use it in GitHub Desktop.
Save shellandbull/9446259 to your computer and use it in GitHub Desktop.
Class IronMan
def initialize
@jet_pack_gas = 100
end
def fly
@jet_pack_gas -= 1
"I'm flying!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment