Parser now uses enumerator

This commit is contained in:
nub31
2025-07-22 23:01:29 +02:00
parent eb009b6ac0
commit d97e37fd34
4 changed files with 105 additions and 159 deletions

View File

@@ -1,4 +1,2 @@
namespace c
extern func printf(fmt: cstring, arg: i64): void
extern func puts(fmt: cstring)

View File

@@ -1,6 +1,5 @@
func main(args: []cstring): i64
{
c::puts("test")
puts("test")
return 0
}