10 lines
220 B
Java
10 lines
220 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);
|
|
}
|
|
} |