Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //HelloWorld2.java MrG 2011.0908
- //purpose: getting used to the system
- //required files: HelloWorld2.java
- //translator phaase: javac HelloWorld2.java
- //interpreter phase: java HelloWorld2 name game
- public class HelloWorld2
- {
- public static void main(String[] args)
- {
- System.out.println("Hello, " + args[0] + ", how about a nice game of " + args[1] + "!!!");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement