feat: beta compiling to fasm (codegen) + hello world example let's goooo

This commit is contained in:
2025-11-30 22:04:35 +01:00
parent 22f745e8dc
commit 16cc06b788
14 changed files with 1141 additions and 135 deletions

View File

@ -1,7 +1,15 @@
extern putchar
fn main() {
local a = 34
local b = 35
putchar(a + b)
local h = 72
local e = 69
local l = 76
local o = 79
local nl = 10
putchar(h)
putchar(e)
putchar(l)
putchar(l)
putchar(o)
putchar(nl)
}