RosettaCodeData/Task/Higher-order-functions/Sidef/higher-order-functions.sidef

11 lines
160 B
Plaintext

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