Skip to content

Instantly share code, notes, and snippets.

@cohalz
Last active January 4, 2016 02:19
Show Gist options
  • Save cohalz/8554560 to your computer and use it in GitHub Desktop.
Save cohalz/8554560 to your computer and use it in GitHub Desktop.
let rec downto1 = function
| n -> if n < 1 then [] else n::downto1 (n-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment