Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public class Hello {
  2. public static void main(String args[]) {
  3. if(args != null && args.length == 1) {
  4. System.out.println(args[0]);
  5. }
  6. main(new String[] { "Hello World!" });
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement