Skip to content

Instantly share code, notes, and snippets.

@dom96

dom96/nlah.nim Secret

Created May 10, 2016 20:13
Show Gist options
  • Save dom96/cfb85b546e914f73b7cde4f429e9d06c to your computer and use it in GitHub Desktop.
Save dom96/cfb85b546e914f73b7cde4f429e9d06c to your computer and use it in GitHub Desktop.
type
ProcTypeKind = enum
prcOne, prcTwo
ProcType = object
case kind*: ProcTypeKind
of prcOne:
myProc: proc ()
of prcTwo:
myProc2: proc (x: int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment