How can I convert :obj back into a variable called obj inside the def?
def foo(bar)
bar.some_method_call
end
foo :obj
UPDATE: The final code is more elaborate than this but...
I like to be able to say
foo :obj
instead of
foo obj
I working on some DSL-like syntax. And this one change would let things read a little clearer.