Parser now uses enumerator

This commit is contained in:
nub31
2025-07-22 23:01:29 +02:00
parent f6da9e9753
commit 62c9d86cda
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
}