mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 11:12:37 +00:00
9 lines
104 B
Nim
9 lines
104 B
Nim
type TFoo{.exportc.} = object
|
|
x:int
|
|
|
|
var s{.exportc.}: seq[TFoo] = @[]
|
|
|
|
s.add TFoo(x: 42)
|
|
|
|
echo s[0].x
|