mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
22 lines
208 B
Text
22 lines
208 B
Text
fun f () local b {
|
|
b := 7;
|
|
test ();
|
|
b := y;
|
|
test ();
|
|
b := 9;
|
|
test ();
|
|
return 0
|
|
}
|
|
|
|
--x := 0;
|
|
--y := 0;
|
|
--z := 0;
|
|
--t := 0;
|
|
--test ();
|
|
y := "abc";
|
|
test ();
|
|
t := [];
|
|
test ();
|
|
t := 0;
|
|
test ();
|
|
f ()
|