blob: ebaed29f465bccd364131eb26e83de6e30db72e8 [file] [log] [blame]
class Bar {
public static void main(String[] args) {
for (String s : args) {
try {
System.out.println(s);
}
catch (Exception e) {
System.out.println(e);
}
}
}
}