Skip to content

Instantly share code, notes, and snippets.

@johnzondr
Created July 6, 2015 16:45
Show Gist options
  • Save johnzondr/59534fd721b8e6c85183 to your computer and use it in GitHub Desktop.
Save johnzondr/59534fd721b8e6c85183 to your computer and use it in GitHub Desktop.
oop team firehose quiz 3
class Team
attr_accessor :name, :sport
def initialize(name, sport)
@name = name
@sport = sport
end
end
@Matt-Lepley
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment