mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
215 B
Java
14 lines
215 B
Java
|
|
class CL {
|
|
void g() {
|
|
int j;
|
|
if (1 == 1)
|
|
j = 9;
|
|
<caret>String laugh = "haha";
|
|
if (j > 10)
|
|
s = "too high";
|
|
else
|
|
s = "too low";
|
|
}
|
|
}
|