Permalink
Cannot retrieve contributors at this time
18 lines (14 sloc)
355 Bytes
| // 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"); | |
| } | |
| } |