summaryrefslogtreecommitdiff
path: root/tests/helloworld.java
blob: eae1f7327e917a3525c35a7de7d322f9d4fd62ec (plain)
1
2
3
4
5
6
7
class helloworld
{
        public static void main(String args[])
        {
           System.out.println("Hello World!");
        }
}