Skip to content

Instantly share code, notes, and snippets.

@mogox
Created February 6, 2015 07:31
Show Gist options
  • Save mogox/6ee46687754798a4a994 to your computer and use it in GitHub Desktop.
Save mogox/6ee46687754798a4a994 to your computer and use it in GitHub Desktop.
ejemplo de attr_accessor
class Bowling
attr_accessor :rolls
attr_accessor :result
def initialize(result)
@rolls =[]
@result = result
end
def roll(pins)
rolls.push pins
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment