Skip to content

Instantly share code, notes, and snippets.

@mzaks
Last active August 29, 2015 14:19
Show Gist options
  • Save mzaks/cdc2d36060e2a6d881b0 to your computer and use it in GitHub Desktop.
Save mzaks/cdc2d36060e2a6d881b0 to your computer and use it in GitHub Desktop.
enum EnumList<T> {
case Cons(T, EnumList<T>)
case Nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment