Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
// Hello Ice-cream
// ===============
// What is the output of this program?
public final class Hello {
// say Hello then go buy an
// ()//()//; \u000A { icecream();} //;()//()
public static void main(String[] args) {
new Hello().toString();
System.out.println("hello");
}
void icecream() {
System.out.println("icecream");
}
}