RosettaCodeData/Task/Higher-order-functions/Sidef/higher-order-functions.sidef
2016-12-05 23:44:36 +01:00

10 lines
160 B
Text

func first(f) {
return f();
}
func second {
return "second";
}
say first(second); # => "second"
say first(func { "third" }); # => "third"