Schrödinger's Box: The Quantum Experiment
Superposition of states, anyone?
// Quantum Mechanics in Action
// Box contains a cat, but is it really?
boolean catInsideBox = true;
boolean observedByHuman = false;
if (observedByHuman == true) {
print("Cat is definitely inside the box.");
} else {
print("Maybe the cat is inside, maybe it's not. Who knows?");
}