bottom-tier-java/HelloWorld.java
2019-09-16 13:31:19 +02:00

11 lines
219 B
Java

/** hello world
* by vala, because everyone should start somewhere
* copy as you like, it wont be any good
*/
public class HelloWorld{
public static void main(String[] args){
System.out.print("hello world!");
}
}