Example: command lines used to run 2 diffferent Java programs
UNIX prompt>> java Hello
UNIX prompt>> java Abc3
|
These command lines do not have any arguments
UNIX prompt>> java MyProg 1234 (command line with 1 argument)
UNIX prompt>> java Abc4 2 0 -4 (command line with 3 arguments)
|