Skip to content

Instantly share code, notes, and snippets.

@1syo
Created June 6, 2013 01:32
Show Gist options
  • Save 1syo/5718697 to your computer and use it in GitHub Desktop.
Save 1syo/5718697 to your computer and use it in GitHub Desktop.
class C
attr_accessor :m
def initialize(&block)
instance_eval(&block)
end
end
x = "hoge"
c = C.new { self.m = x }
puts c.m #=> "hoge"
@x = "hoge"
c = C.new { self.m = @x }
puts c.m #=>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment