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
|
|
|
|
*/
|
|
|
|
|
2019-09-16 07:23:24 -04:00
|
|
|
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-16 07:23:24 -04:00
|
|
|
}
|
2019-09-13 13:36:24 -04:00
|
|
|
}
|