mirror of
https://github.com/danbulant/introductionToProgramming
synced 2026-05-19 20:38:36 +00:00
7 lines
No EOL
178 B
Java
7 lines
No EOL
178 B
Java
public class UseArgument {
|
|
public static void main(String[] args) {
|
|
System.out.print("Hi, ");
|
|
System.out.print(args[0]);
|
|
System.out.println(". How are you?");
|
|
}
|
|
} |