Hi,
Would it be possible to have sizeof work more like the Blitz Basic 2 Sizeof? You know, you could do:
Code: Select all
Structure foo
a.w : b.w
EndStructure
; ...
PrintN(Str(Sizeof(foo\b)))
Code: Select all
Structure foo
a.w : b.w
EndStructure
; ...
DataSection
Data.l Sizeof(foo)
EndDataSection
--
It's not minimalist - I'm increasing efficiency by reducing input effort.
(Win98first ed. + SP1, PB3.20)