Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Nim

Visibility

unlisted

Author

legacy-anonymous

Created

2017-03-31T03:12:38Z

Updated

2017-03-31T03:12:38Z

type
  Foo = distinct int

proc foobar(foo: Foo, whatever: string) =
  echo whatever

let f = 1.Foo

f.foobar("hello")
INFO