JavaCompilerCore/de/dhbwstuttgart/bytecode/TestIf.java

12 lines
171 B
Java
Raw Normal View History

2017-08-23 15:26:59 +00:00
package de.dhbwstuttgart.bytecode;
public class TestIf {
public TestIf(Boolean b) {
if(b) {
System.out.println("1");
}else {
System.out.println("0");
}
}
}