]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/utf8.qc
Added definition file for test-suite, used by default by the test system. To overrid...
[xonotic/gmqcc.git] / tests / utf8.qc
1 void main() {
2     print("Sum: \{x2211} ");
3     print("\{8721} ");
4     print("∑\n");
5     if ('\{x2211}' != '\{8721}' || '\{x2211}' != '∑')
6         print("Fail!\n");
7     else
8         print("Okay\n");
9
10 }