Untitled
type
Foo = distinct int
proc foobar(foo: Foo, whatever: string) =
echo whatever
let f = 1.Foo
f.foobar("hello")INFO
type
Foo = distinct int
proc foobar(foo: Foo, whatever: string) =
echo whatever
let f = 1.Foo
f.foobar("hello")