mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Initial checkin of docs parsing. char is now unsigned, and signed char is "ichar".
This commit is contained in:
committed by
Christoffer Lerno
parent
45c4f205bb
commit
4f064e7da2
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user