mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: e84bcf1f1d03819ca4b5c12b91fad72baf82fc27
12 lines
213 B
Java
12 lines
213 B
Java
public class Test {
|
|
|
|
void test() {
|
|
double x = 0;
|
|
double y = 0;
|
|
while (x < 10) {
|
|
<selection>x = x + .1;
|
|
y = y - .1;</selection>
|
|
}
|
|
System.out.println("x: " + x + "; y: " + y);
|
|
}
|
|
} |