gmqcc/tests/order.qc
2013-08-27 10:42:13 +02:00

8 lines
107 B
C++

float go(string x) {
print(x, "\n");
return 1;
}
void main() {
float x = go("A") + go("B");
}