mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
29 lines
243 B
Text
29 lines
243 B
Text
fun test1 (a) {
|
|
write (a)
|
|
}
|
|
|
|
fun test2 (b) {
|
|
write (b)
|
|
}
|
|
|
|
fun test3 (c) {
|
|
write (c)
|
|
}
|
|
|
|
fun print () {
|
|
write (a);
|
|
write (b);
|
|
write (c)
|
|
}
|
|
|
|
a := 100;
|
|
b := 200;
|
|
c := 300;
|
|
|
|
test1 (1);
|
|
print ();
|
|
test2 (2);
|
|
print ();
|
|
test3 (3);
|
|
print ()
|
|
|