LSTS Language Reference Website
View the Project on GitHub andrew-johnson-4/lsts-language-reference
USize
is a variable size unsigned integer that will be as big as a word.
ifdef SYSTEM-32-BIT (
type USize is U32;
);
ifdef SYSTEM-64-BIT (
type USize is U64;
);