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