Skip to content

Instantly share code, notes, and snippets.

@cohalz
Last active January 4, 2016 03:19
Show Gist options
  • Save cohalz/8561534 to your computer and use it in GitHub Desktop.
Save cohalz/8561534 to your computer and use it in GitHub Desktop.
let rec concat = function
| [] -> []
| []::xs -> concat xs
| (x::ls)::xs -> x :: concat (ls::xs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment