If block is a closure, why this code does not work? And how to make it work?
def R(arg)
Class.new do
def foo
puts arg
end
end
end
class A < R("Hello!")
end
A.new.foo #throws undefined local variable or method `arg' for #<A:0x2840538>
feedback
|
|
Blocks are closures and arg is indeed available inside the Class.new block. It's just not available inside the foo method because
| |||||||
feedback
|
|
If you define the class dynamically, you can alter it as you like:
| |||
|
feedback
|