JavaCompilerCore/resources/bytecode/javFiles/Ternary.jav
Daniel Holle b774281cbb
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m48s
Add Ternary, fix #324
2024-04-22 12:17:53 +02:00

9 lines
170 B
Java

import java.lang.Boolean;
import java.lang.String;
import java.lang.Integer;
public class Ternary {
public main(x) {
return x > 10 ? "big" : "small";
}
}