]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - tests/calls.qc
Parameter omitting in fteqcc is disallowed.
[xonotic/gmqcc.git] / tests / calls.qc
index d55598ed300ff7cbc2b49c8a0a774c879f7e4d12..f5ce732110e24a2280a406b34eccca4950a65c9f 100644 (file)
@@ -1,6 +1,3 @@
-void(string, ...) print = #1;
-string(float) ftos = #2;
-
 float(float x, float y, float z) sum = {
     return x + y + z;
 };
@@ -11,4 +8,5 @@ void(float a, float b, float c) main = {
             sum(sum(sum(a, b, c), b, sum(a, b, c)), b, sum(a, b, sum(a, b, c))),
             sum(sum(a, b, c), b, c));
     print(ftos(f), "\n");
+
 };