forked from vala/bottom-tier-java
11 lines
219 B
Java
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!");
|
|
}
|
|
}
|