Skip to content

Instantly share code, notes, and snippets.

@tomsotte
Created November 30, 2023 21:00
function egg() {
console.log("cluck!");
return chicken;
}
function chicken() {
console.log("plop!");
return egg;
}
let creature = Math.round(Math.random()) ? chicken() : egg();
while (true) {
creature = creature();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment