]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - tests/calls.qc
Merge branch 'master' into cooking
[xonotic/gmqcc.git] / tests / calls.qc
index d55598ed300ff7cbc2b49c8a0a774c879f7e4d12..7b09f11e0737abcc288403d8e530f3e909f63243 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");
+    
 };