mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 12:00:25 +00:00
24 lines
323 B
Plaintext
24 lines
323 B
Plaintext
// comment
|
|
func Foo(_a, _b) {
|
|
var _i = 0;
|
|
|
|
// yeah...
|
|
while _a < _b {
|
|
/*
|
|
So this will just compile to plain SQF.
|
|
*/
|
|
sqf:
|
|
sleep 3;
|
|
hint format ["%1", _i];
|
|
sqf
|
|
|
|
_i = _i+1;
|
|
}
|
|
}
|
|
|
|
/* comment */
|
|
var _a = 1;
|
|
var _b = 2;
|
|
|
|
Foo(_a, _b);
|