You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tlang/source/tlang/testing/meta/sizeof.t

8 lines
156 B
Raku

module meta_sizeof;
size_t myVar1 = sizeof(uint);
size_t myVar2 = sizeof(ubyte);
size_t myVar3 = sizeof(ushort)+1;
myVar3 = sizeof(ulong)+sizeof(size_t);