tario / fastruby

Fastruby, fast execution of ruby code (please, killme)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

to_proc arguments as generalization of proc blockization

tario opened this issue · comments

class X
def foo
    yield(2)
end

def bar
    foo(&:to_s)
end

end