blob: 994d6320078ca5f8d01f78f8d66a8dc4441ead94 [file] [log] [blame]
public class HelloWorld {
static String hw="Hello world";
public static void main(String[] args) {
System.out.println(hw);
}
}