Skip to content

Instantly share code, notes, and snippets.

View woupiestek's full-sized avatar

Wouter Stekelenburg woupiestek

View GitHub Profile
@tonymorris
tonymorris / EggsToast.java
Created August 29, 2016 12:46
What is the output of this program?
// What is the output of this program?
// a) x = 2
// b) x = 3
// c) compile-error
// d) runtime exception
// e) something else _____
abstract class Eggs {
abstract void m();
Eggs() {