bottom-tier-java/HelloWorld.java

11 lines
219 B
Java
Raw Normal View History

2019-09-16 07:31:19 -04:00
/** hello world
* by vala, because everyone should start somewhere
* copy as you like, it wont be any good
*/
public class HelloWorld{
2019-09-13 13:36:24 -04:00
public static void main(String[] args){
2019-09-16 07:31:19 -04:00
System.out.print("hello world!");
}
2019-09-13 13:36:24 -04:00
}