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