]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/utf8.qc
Only optimize (a - (-b)) into (a + b) when the unary operand is a negation. This...
[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 }