blob: 732c90572c7bb68d4d92bf6c8b1cdc34216db08b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class test01{
public static void main(String[] a){
System.out.println(new Operator().compute());
}
}
class Operator{
boolean result;
public int compute(){
result = true && false;
return 0;
}
}
|