Skip to content

Instantly share code, notes, and snippets.

@danlamanna
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save danlamanna/232f901c71c4e96c78c0 to your computer and use it in GitHub Desktop.

Select an option

Save danlamanna/232f901c71c4e96c78c0 to your computer and use it in GitHub Desktop.
fun rev(nil, M) = M
| rev(x::xs, ys) = rev(xs, x::ys);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment