Skip to content

Instantly share code, notes, and snippets.

@RobAWilkinson
Created May 6, 2015 15:43
Show Gist options
  • Save RobAWilkinson/f3900ef8ce3c40456df8 to your computer and use it in GitHub Desktop.
Save RobAWilkinson/f3900ef8ce3c40456df8 to your computer and use it in GitHub Desktop.
class Bird
attr_reader :name
@@count = 0
def initialize(name)
@name = name
@@count += 1
end
def self.count
@@count
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment