Created
November 30, 2023 21:00
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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