mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 12:00:25 +00:00
9 lines
118 B
Plaintext
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)]);
|