10 lines
144 B
Text
10 lines
144 B
Text
def first (function f)
|
|
return (f)
|
|
end
|
|
|
|
def second ()
|
|
return "second"
|
|
end
|
|
|
|
out (first second) endl console
|
|
# "second" is output to the console
|