RosettaCodeData/Task/Higher-order-functions/Ursa/higher-order-functions.ursa
2016-12-05 23:44:36 +01: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