Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am aimless on github.
  • I am aimless (https://keybase.io/aimless) on keybase.
  • I have a public key ASDQF7LqwavXcdXgd2_n3c5weCaYgAWhMWN7jqRIVX8hWQo

To claim this, I am signing this object:

import strutils
import sequtils
type
Node[T] = object
Item: T
Next: ref Node[T]
Stack[T] = object
Top: ref Node[T]
Size: int