Skip to content

Instantly share code, notes, and snippets.

@manuelbrunner
Created August 10, 2011 20:02
Show Gist options
  • Save manuelbrunner/1138040 to your computer and use it in GitHub Desktop.
Save manuelbrunner/1138040 to your computer and use it in GitHub Desktop.
class Test
attr_accessor :prop
def set_prop(value)
prop = value
end
end
t = Test.new
t.set_prop 'a'
puts t.prop.nil?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment