mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
11 lines
147 B
Nim
11 lines
147 B
Nim
# Test the sizeof proc
|
|
|
|
type
|
|
TMyRecord {.final.} = object
|
|
x, y: int
|
|
b: bool
|
|
r: float
|
|
s: string
|
|
|
|
write(stdout, sizeof(TMyRecord))
|