8 lines
141 B
Text
8 lines
141 B
Text
import extensions;
|
|
|
|
public program()
|
|
{
|
|
var first := (f => f());
|
|
var second := { ^ "second" };
|
|
console.printLine(first(second))
|
|
}
|