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