summaryrefslogtreecommitdiff
path: root/java/02-hello/Hello.java
blob: 764f59f2bc872574ca5ccc224d9d3ce8bed70319 (plain)
1
2
3
4
5
6
7
8
9
/*
* Run this as below:
*   java Hello Kamal
*/
public class Hello {
    public static void main(String[] args) {
        System.out.println("Hello " + args[0]);
    }
}