Files
Nim/tests/tsizeof.nim
2009-09-15 23:22:22 +02:00

11 lines
157 B
Nim
Executable File

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