Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,3 @@
0b101 // = 5
0o12 // = 10
0xF // = 16

View file

@ -0,0 +1,8 @@
10y // 8-bit
'g'B // Character literals can be turned into unsigned 8-bit literals
10s // 16-bit
10l // 32-bit (suffix is optional)
10L // 64-bit
10I // Bigint (cannot be preceded by a 'u')
10un // Unsigned native int (used to represent pointers)