Skip to content

Instantly share code, notes, and snippets.

@KirinDave
Created July 16, 2009 06:20
Show Gist options
  • Select an option

  • Save KirinDave/148254 to your computer and use it in GitHub Desktop.

Select an option

Save KirinDave/148254 to your computer and use it in GitHub Desktop.
#lang scheme
(letrec ([recur
(lambda (x)
(cond
[(zero? x) (display "Countdown complete.")]
[else (printf "Counting ~s~n" x)
(recur (- x 1))]))])
(recur 10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment