uibk_703602-Compiler-Constr.../examples/operator_precedence/operator_precedence.mc

15 lines
140 B
MonkeyC
Raw Normal View History

2020-02-13 23:25:22 +01:00
int main()
{
int x;
x = 4 + 3 * 5 + 6;
print_int(x);
print_nl();
int y;
y = 4 * 3 + 5 * 6;
print_int(y);
print_nl();
return 0;
}