compiler-design-eth/javali_tests/HW3_nop90/OperatorTests/OkBooleanAndOr.javali

8 lines
125 B
Text
Raw Normal View History

2020-01-15 22:32:25 +01:00
// Test boolean && and || operators
class Main {
void main() {
boolean a, b, c;
a = b && c || a;
}
}