Name: Anonymous 2011-11-11 21:28
how come my java code is working
function helloworld {
alert ( hell owrl
}
function helloworld {
alert ( hell owrl
}
public class HelloWorld {
public static void main(String[] args) {
helloworld();
}
public void helloworld() {
System.out.println("Hello World");
}
}