/** 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!");
	}
}