Skip to content

Instantly share code, notes, and snippets.

@jbclements
Created July 2, 2013 17:35
Show Gist options
  • Save jbclements/5911358 to your computer and use it in GitHub Desktop.
Save jbclements/5911358 to your computer and use it in GitHub Desktop.
recursive-definition
struct NonEmptyList {first: int, rest: MyList}
enum MyList {
endoflist,
listnode(@NonEmptyList)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment