Skip to content

Instantly share code, notes, and snippets.

@tcocca
Created April 22, 2010 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tcocca/375270 to your computer and use it in GitHub Desktop.
Save tcocca/375270 to your computer and use it in GitHub Desktop.
class Tom
attr_accessor :handle
def initialize
@handle = "tomcocca"
end
end
class Tom
attr_accessor :handle
def initialize
self.handle = "tomcocca"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment