begin work on hblang2

This commit is contained in:
Able 2024-12-05 11:03:07 -06:00
parent 883c01b2ba
commit eff2a22018
3 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,5 @@
# hblang²
The hblang² or hblang2 compiler is intended to compile hblang to hbvm bytecode while also being written in hblang.
This is the first step in bootstrapping ableOS.

View file

@ -0,0 +1,11 @@
[package]
name = "hblang2"
authors = [""]
[dependants.libraries]
[dependants.binaries]
hblang.version = "1.0.0"
[build]
command = "hblang src/main.hb"

View file

@ -0,0 +1,5 @@
stn := @use("stn")
main := fn(): int {
return 0
}