gmqcc/tests/utf8.qc

14 lines
258 B
C++
Raw Normal View History

2012-12-22 21:46:42 +00:00
void print(...) = #1;
string ftos (float) = #2;
void main() {
print("Sum: \{x2211} ");
print("\{8721} ");
print("\n");
if ('\{x2211}' != '\{8721}' || '\{x2211}' != '')
print("Fail!\n");
else
print("Okay\n");
}