JavaCompilerCore/test/bytecode/javFiles/While.jav

10 lines
105 B
Plaintext
Raw Normal View History

2018-03-14 14:51:38 +00:00
import java.lang.Integer;
public class While {
m(x) {
while(x < 2) {
x = x+1;
}
return x;
}
}