Skip to content

Instantly share code, notes, and snippets.

@pablitar
Created October 11, 2013 14:03
Show Gist options
  • Save pablitar/6935164 to your computer and use it in GitHub Desktop.
Save pablitar/6935164 to your computer and use it in GitHub Desktop.
class Golondrina
def energia=(unaEnergia)
@energia = unaEnergia;
end
def energia
@energia
end
def volar
@energia = @energia - 10
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment