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

8 lines
137 B
Text

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