blob: a7c2fcf6a6699de32b80c448f050639e217b2194 [file] [log] [blame]
class HelloWorld {
public static final String str = "Hello World";
public static void main(String[] args) {
System.out.println(str);
}
}