Updated README, added todo.

This commit is contained in:
Marvin Blum
2015-10-09 15:53:21 +02:00
parent 7c4e3c1077
commit b908525d34
5 changed files with 121 additions and 28 deletions

View File

@@ -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");