BicaVM/runtime/foo.java

10 lines
220 B
Java
Raw Normal View History

2011-11-17 00:35:14 +00:00
import bicavm.browser.Window;
2011-11-10 23:14:01 +00:00
public class foo{
public static void main(String[] args){
2011-11-17 00:35:14 +00:00
String hello = "bicavm";
String world = " changed this title";
2011-11-17 00:35:14 +00:00
Window.setTitle(hello + world);
2011-11-10 23:14:01 +00:00
}
}