Files
Nim/tests/tsizeof.nim
2010-02-14 00:29:35 +01:00

11 lines
157 B
Nim

# Test the sizeof proc
type
TMyRecord {.final.} = object
x, y: int
b: bool
r: float
s: string
write(stdout, sizeof(TMyRecord))