about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/1/UseThree.java
blob: 9b5693b166e208a8a75c9f65b9d69049867fa3eb (plain) (blame)
1
2
3
4
5
6
7
8
class UseThree
{
  public static void main(String... args)
  {
    System.out.printf("Hi %s, %s and %s.  How are you?\n",
                      args[2], args[1], args[0]);
  }
}