]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - misc/source/gmqcc-src/tests/utf8.qc
By fteqcc, hello gmqcc
[voretournament/voretournament.git] / misc / source / gmqcc-src / 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 }