gmqcc/tests/order.qc

9 lines
107 B
C++
Raw Normal View History

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