Add support for multiple integer types.

This commit is contained in:
2023-06-04 17:31:26 -07:00
parent 7efd2fb796
commit 469fe35e46
19 changed files with 528 additions and 169 deletions

4
examples/basic/test2.ngr Normal file
View File

@@ -0,0 +1,4 @@
// this test is useful for making sure we don't accidentally
// use a signed divide operation anywhere important
a = 96u8 / 160u8;
print a;