зеркало из https://github.com/github/ruby.git
19 строки
184 B
YAML
19 строки
184 B
YAML
|
prelude: |
|
||
|
class C
|
||
|
def m a
|
||
|
1
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class CC < C
|
||
|
def m a
|
||
|
super
|
||
|
end
|
||
|
end
|
||
|
|
||
|
obj = CC.new
|
||
|
benchmark:
|
||
|
vm_zsuper: |
|
||
|
obj.m 10
|
||
|
loop_count: 6000000
|