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,11 @@
42 // integer literal
1_000_000 // _ can be used for readability
1_42_00 // or unreadability...
0x2a // hexadecimal integer literal
0o52 // octal integer literal
0b101010 // binary integer literal
10u // unsigned int
10b, 10sb, 10bs // signed byte
10ub, 10bu // unsigned byte
10L // long
10UL, 10LU // unsigned long