Skip to content

Instantly share code, notes, and snippets.

@marcduiker
Last active June 2, 2023 10:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcduiker/a8c48505c149b829f16664178c945b1b to your computer and use it in GitHub Desktop.
Save marcduiker/a8c48505c149b829f16664178c945b1b to your computer and use it in GitHub Desktop.
Poetry for Programmers

Recursion

function recursion() {
    // Forever repeating
    // Getting one step closer every time
    // Each iteration is a new chance
    // of getting nearer to the goal
    // Infinity won't be reached
    // but we can get close
    // How long will it take?
    // we don't know
    // Patiently we wait 
    // and call it once again

    // Let me tell you about
    recursion();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment