mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
18 lines
231 B
Nim
18 lines
231 B
Nim
type
|
|
A* = object
|
|
a0*: int
|
|
ha1: float
|
|
B = object
|
|
b0*: int
|
|
hb1: float
|
|
C* = ref object
|
|
c0: int
|
|
hc1: float
|
|
D* = ptr object
|
|
d0: int
|
|
hd1: float
|
|
PA* = ref A
|
|
PtA* = ptr A
|
|
|
|
proc initB*(): B = B()
|