RosettaCodeData/Task/Higher-order-functions/Elena/higher-order-functions.elena
2020-02-17 23:21:07 -08:00

8 lines
137 B
Text

import extensions;
public program()
{
var first := (f => f());
var second := {"second"};
console.printLine(first(second))
}