blob: 9fccf0ec6897df5c7ff074a036eed725b4f8132d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
public class MultiArgHelloWorld {
public static void main(String[] args) {
foo("Hello", "World");
}
static void foo(Object s, Object t) {
System.out.println(s + " " + t);
}
}
|