diff options
| author | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-27 01:22:42 +0000 |
|---|---|---|
| committer | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-27 01:22:42 +0000 |
| commit | 938773d9cc062fd028f6560b1127a2ecd23f61c3 (patch) | |
| tree | 403aacd629975440ba23a645975c34a141d634ee /tests/misc | |
| parent | 2f47bdf7f49f05bd421e4182635f489c8cae01b3 (diff) | |
Fixed constant hex/oct bug + Fixed some of the examples (work in progress) + added bootloader example (I will add some docs)
Diffstat (limited to 'tests/misc')
| -rw-r--r-- | tests/misc/test_const_hex.zc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/misc/test_const_hex.zc b/tests/misc/test_const_hex.zc new file mode 100644 index 0000000..102207d --- /dev/null +++ b/tests/misc/test_const_hex.zc @@ -0,0 +1,13 @@ + +def CONST_HEX = 0x10; +def CONST_OCT = 010; + +fn main() { + if (CONST_HEX != 16) { + return 1; + } + if (CONST_OCT != 8) { + return 2; + } + return 0; +} |
