mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
211 B
Plaintext
12 lines
211 B
Plaintext
class Test {
|
|
void useTest() {
|
|
String color;
|
|
if (Math.random() > 0.5) {
|
|
color = "Foo";
|
|
} else {
|
|
color = "Fie";
|
|
}
|
|
System.out.println("Color is " + color);
|
|
}
|
|
|
|
} |