]> git.xonotic.org Git - voretournament/voretournament.git/blobdiff - misc/source/gmqcc-src/tests/utf8.qc
By fteqcc, hello gmqcc
[voretournament/voretournament.git] / misc / source / gmqcc-src / tests / utf8.qc
diff --git a/misc/source/gmqcc-src/tests/utf8.qc b/misc/source/gmqcc-src/tests/utf8.qc
new file mode 100644 (file)
index 0000000..f5a9255
--- /dev/null
@@ -0,0 +1,10 @@
+void main() {
+    print("Sum: \{x2211} ");
+    print("\{8721} ");
+    print("∑\n");
+    if ('\{x2211}' != '\{8721}' || '\{x2211}' != '∑')
+        print("Fail!\n");
+    else
+        print("Okay\n");
+
+}