Started jdk-Command line arg problem help pls!!
cant compile this source code to execute it.the program is for mailinglabels but
with the ability to change name.pls look any help well appreciated:
//This program prints "Chris Gardner, 190 Sprace Road, Glasgow G773DT"
//Filename: MailingLabel.java
public class MailingLabel
{
public static void main(String [] args)
{
System.out.println("args[0] args[1]");
System.out.println("190 Sprace Road");
System.out.println("Glasgow G773DT");
What am I doing wrong.THx

