24 lines
153 B
Ruby
24 lines
153 B
Ruby
|
module M
|
||
|
def f
|
||
|
end
|
||
|
|
||
|
def g
|
||
|
|
||
|
f(2)
|
||
|
h(2, a: 'a')
|
||
|
h(2, a: :a)
|
||
|
|
||
|
end
|
||
|
end
|
||
|
|
||
|
# class C
|
||
|
# end
|
||
|
|
||
|
module K
|
||
|
end
|
||
|
|
||
|
f(2)
|
||
|
h(2, a: 'a')
|
||
|
h(2, a: :a)
|
||
|
|