]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/utf8.qc
utf8 tests
[xonotic/gmqcc.git] / tests / utf8.qc
1 void   print(...)   = #1;
2 string ftos (float) = #2;
3
4 void main() {
5     print("Sum: \{x2211} ");
6     print("\{8721} ");
7     print("∑\n");
8     if ('\{x2211}' != '\{8721}' || '\{x2211}' != '∑')
9         print("Fail!\n");
10     else
11         print("Okay\n");
12
13 }