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