RosettaCodeData/Task/Higher-order-functions/Ursa/higher-order-functions.ursa
2023-07-01 13:44:08 -04:00

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