summaryrefslogtreecommitdiffstats
path: root/src/se/liu/liuid123/HelloWorld.java
blob: 36e2290a5f8012d9e9be6e1ceb8be52314e61aa1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package se.liu.liuid123;

/**
 * A simple test class used to verify that your development environment is working.
 */
public class HelloWorld
{
    public static void main(String[] args) {
        System.out.println("Hello world!");
    }
}