Skip to content

Instantly share code, notes, and snippets.

@fdjones
Created May 13, 2018 10:42
Show Gist options
  • Save fdjones/e4b81597382b70bfe5b63d5bd36c8757 to your computer and use it in GitHub Desktop.
Save fdjones/e4b81597382b70bfe5b63d5bd36c8757 to your computer and use it in GitHub Desktop.
fun get_nth (xs : string list, n : int)
if n = 1 then hd xs
else get_nth (xs, n -1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment