Skip to content

Instantly share code, notes, and snippets.

@tautologico
Last active December 26, 2015 01:19
Show Gist options
  • Save tautologico/7070092 to your computer and use it in GitHub Desktop.
Save tautologico/7070092 to your computer and use it in GitHub Desktop.
Functional-style integer lists in rust
enum IntList {
Empty,
Cons(int, @IntList)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment