11 lines
131 B
Text
11 lines
131 B
Text
|
|
def first(function)
|
||
|
|
return function()
|
||
|
|
end
|
||
|
|
|
||
|
|
def second()
|
||
|
|
return "second"
|
||
|
|
end
|
||
|
|
|
||
|
|
result = first(second)
|
||
|
|
println result
|