about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/1/TenHelloWorld.java
blob: d8a2cd96002ef8293dfdc4dea03e479c0804e380 (plain) (blame)
1
2
3
4
5
6
7
8
class TenHelloWorld
{
  public static void main(String... args)
  {
    for (int i = 0; i < 10; ++i)
      System.out.println("Hello, World!");
  }
}