Files
asl/out/sub/sub.sqf
Marvin Blum 4471ae285e Added main.
2015-10-25 16:57:00 +01:00

9 lines
118 B
Plaintext

x = 1;
y = 3;
foo = {
x = _this select 0;
y = _this select 1;
return x+y;
};
hint (format ["%1", ([x, y] call foo)]);