mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
9 lines
100 B
Nim
9 lines
100 B
Nim
type
|
|
Foo[M] = proc() : M
|
|
|
|
proc bar[M](f : Foo[M]) =
|
|
discard f()
|
|
|
|
proc baz() : int = 42
|
|
|
|
bar(baz) |