Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am TisButMe on github.
  • I am tisbutme (https://keybase.io/tisbutme) on keybase.
  • I have a public key whose fingerprint is 1A1D C618 3291 A34B 793B ACFB B757 90B2 1B4D 1670

To claim this, I am signing this object:

enum List_ {
Cons(int, ~List_),
Nil
}
struct List{
head: ~List_
}
impl List {