BicaVM/runtime/foo.java
2011-11-17 00:35:14 +00:00

10 lines
219 B
Java

import bicavm.browser.Window;
public class foo{
public static void main(String[] args){
String hello = "bicavm";
String world = "changed this title";
Window.setTitle(hello + world);
}
}