LSTS Language Reference Website
View the Project on GitHub Lambda-Mountain-Compiler-Backend/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;
);