mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
9 lines
91 B
Text
9 lines
91 B
Text
|
|
fun f (_) {write (1)}
|
||
|
|
fun g (h : tl) {
|
||
|
|
write (h)
|
||
|
|
}
|
||
|
|
|
||
|
|
local n = read ();
|
||
|
|
|
||
|
|
f (1);
|
||
|
|
g ({2, 3})
|