Skip to content

Instantly share code, notes, and snippets.

@ngw
Created March 23, 2011 10:04
Show Gist options
  • Save ngw/882890 to your computer and use it in GitHub Desktop.
Save ngw/882890 to your computer and use it in GitHub Desktop.
>> class Foo
>> def initialize arg
>> @attr = arg
>> end
>> def attr=( arg )
>> puts 'HA!'
>> end
>> end
=> nil
>> Foo.new 'test'
=> #<Foo:0x1012fbf28 @attr="test">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment