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