mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
15 lines
235 B
Text
15 lines
235 B
Text
fun f (a, b, c, d, e, f, g, h) {
|
|
var i = 9, j = 10;
|
|
write (a);
|
|
write (b);
|
|
write (c);
|
|
write (d);
|
|
write (e);
|
|
write (f);
|
|
write (g);
|
|
write (h);
|
|
write (i);
|
|
write (j)
|
|
}
|
|
|
|
f (1, 2, 3, 4, 5, 6, 7, 8)
|