forked from JavaTX/JavaCompilerCore
10 lines
105 B
Java
10 lines
105 B
Java
import java.lang.Integer;
|
|
|
|
public class While {
|
|
m(x) {
|
|
while(x < 2) {
|
|
x = x+1;
|
|
}
|
|
return x;
|
|
}
|
|
} |