mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 12:00:25 +00:00
18 lines
184 B
Plaintext
18 lines
184 B
Plaintext
var _a = 1;
|
|
var _b = 2;
|
|
|
|
func somefunc(_x, _y, _z) {
|
|
if _x < _y {
|
|
hint(_z);
|
|
}
|
|
}
|
|
|
|
if _a < _b {
|
|
somefunc(1, "two", 3);
|
|
}
|
|
else{
|
|
_a = 3;
|
|
}
|
|
|
|
hint("this is a hint");
|