JavaPatternMatching/test/bytecode/IfTest.java

10 lines
176 B
Java
Raw Normal View History

2015-10-15 14:15:13 +00:00
class IfTest{
public static void main(String[] args){
System.out.println(new IfElseStatement().method(true));
System.out.println(new IfElseStatement().method(false));
}
}