mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 12:00:25 +00:00
Updated README, added todo.
This commit is contained in:
@@ -1,23 +1 @@
|
||||
// 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);
|
||||
$hint()("Hello World");
|
||||
|
||||
Reference in New Issue
Block a user