]> de.git.xonotic.org Git - voretournament/voretournament.git/blobdiff - misc/source/gmqcc-src/tests/perl-logic.qc
By fteqcc, hello gmqcc
[voretournament/voretournament.git] / misc / source / gmqcc-src / tests / perl-logic.qc
diff --git a/misc/source/gmqcc-src/tests/perl-logic.qc b/misc/source/gmqcc-src/tests/perl-logic.qc
new file mode 100644 (file)
index 0000000..5c7f16b
--- /dev/null
@@ -0,0 +1,6 @@
+void main() {
+    vector va, vb;
+    string sa, sb;
+    print(__builtin_debug_typestring(va || vb), "\n");
+    print(__builtin_debug_typestring(sa || sb), "\n");
+}