RosettaCodeData/Task/Higher-order-functions/Elena/higher-order-functions.elena
2026-02-01 16:33:20 -08:00

8 lines
141 B
Text

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