compiler-design-eth/javali_tests/HW1/ReadWrite.javali

16 lines
208 B
Text
Raw Normal View History

2020-01-15 22:30:09 +01:00
/* Test read/write native functions */
class Main {
void main() {
int r1, r2;
int i0, i1, i2;
i0 = 5;
i1 = read();
r1 = i0 + i1;
write(r1); writeln();
write(r1 - 3); writeln();
}
}