JavaTXCompilerInJavaTXNoMaven/out/tests/resources/bytecode/javFiles/While.jav

12 lines
154 B
Plaintext
Raw Normal View History

2024-05-02 21:04:07 +00:00
import java.lang.Integer;
import java.lang.Long;
import java.lang.Double;
public class While {
m(x) {
while(x < 2) {
x = x+1;
}
return x;
}
}