Files
uibk_703602-Compiler-Constr…/examples/operator_precedence/operator_precedence.mc
T

15 lines
140 B
Mason

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;
}