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