Initial checkin of docs parsing. char is now unsigned, and signed char is "ichar".

This commit is contained in:
Christoffer Lerno
2021-01-29 18:25:15 +01:00
committed by Christoffer Lerno
parent 45c4f205bb
commit 4f064e7da2
57 changed files with 1105 additions and 497 deletions

View File

@@ -1,5 +1,5 @@
const byte AA = ~0;
const byte BB = 200 ;
const char AA = ~0;
const char BB = 200 ;
const uint CC = ~0;
const uint DD = FOO;
@@ -7,7 +7,7 @@ const FOO = ~0;
uint x = AA;
uint z = CC;
byte w = FOO;
char w = FOO;
ushort v = FOO;
uint z2 = DD;