mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
13 lines
213 B
Java
13 lines
213 B
Java
class Bar {
|
|
public static void main(String[] args) {
|
|
for (String s : args) {
|
|
try {
|
|
System.out.println(s);
|
|
}
|
|
catch (Exception e) {
|
|
System.out.println(e);
|
|
}
|
|
}
|
|
}
|
|
}
|