mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 338f0f743f27e771acef1d69f5034a6e7d1f1fcc
10 lines
181 B
Java
10 lines
181 B
Java
class Main {
|
|
public static void main(String[] args) {
|
|
String s = switch (args.length) {
|
|
case 1:
|
|
<caret>yield "abc";
|
|
default:
|
|
yield "";
|
|
};
|
|
}
|
|
} |