8 lines
125 B
Text
8 lines
125 B
Text
|
// Test boolean && and || operators
|
||
|
|
||
|
class Main {
|
||
|
void main() {
|
||
|
boolean a, b, c;
|
||
|
a = b && c || a;
|
||
|
}
|
||
|
}
|