/**
 * Use the prt class (shorthand version of System.out.println)
 *
 */

public class PrtUse
{
    /**
     * main method 
     */

    public static void main (String[ ] args)
    {        

        Prt x = new Prt("A shorthand version of System.out.println");   //print a simple string

                                                                        //since in this case, there is
                                                                        //no need for the reference x
                                                                        //I could eliminate it, and say: 

        new Prt("A shorthand version of System.out.println");           //print a simple string

        new Prt("You have entered " + args.length + " arguments");      //print a concatenated string
    
        for (int i = 0; i < args.length; i++) {                         //for all incoming arguments
            new Prt("argument " + i + "..." + args[i]);                 //print them
        }   
    }
}