about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/4/HowMany.java
blob: 16c07bdb82429e75af7619c61373b6480e6d6f46 (plain) (blame)
1
2
3
4
5
6
7
class HowMany
{
  public static void main(String... args)
  {
    System.out.println(args.length);
  }
}