JavaCompilerCore/resources/bytecode/javFiles/While.jav

12 lines
154 B
Plaintext
Raw Normal View History

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