mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 04:27:44 +00:00
9 lines
141 B
Nim
9 lines
141 B
Nim
|
|
type
|
|
Foo* = object
|
|
fooa, foob: int
|
|
|
|
proc createFoo*(a, b: int): Foo = Foo(fooa: a, foob: b)
|
|
|
|
template geta*(f: Foo): untyped = f.fooa
|