mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-17 04:08:44 +00:00
15 lines
121 B
Text
15 lines
121 B
Text
|
|
fun test1 () {
|
||
|
|
a := 3
|
||
|
|
}
|
||
|
|
|
||
|
|
fun test2 (b) {
|
||
|
|
a := b
|
||
|
|
}
|
||
|
|
|
||
|
|
var x = read (), a, b;
|
||
|
|
|
||
|
|
test1 ();
|
||
|
|
write (a);
|
||
|
|
|
||
|
|
test2 (8);
|
||
|
|
write (a)
|