See More

public class HelloName { public static void main(String[] args) { String name = args[0]; System.out.println("Hello " + name); } }