mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
10 lines
104 B
Ruby
10 lines
104 B
Ruby
class Symbol
|
|
|
|
def to_proc
|
|
Proc.new do |obj, *args|
|
|
obj.send(self, *args)
|
|
end
|
|
end
|
|
|
|
end
|