/*
  Copyright (c) October 2013 by Paweł Rzechonek
*/

public class ProgArgs
{
    public static void main (String[] args)
    {
        for (int i=0; i<args.length; i++) // use the length field from args array
            System.out.println("args["+i+"] = "+args[i]); // concatenation
    }
}

