This is a toy language I created to learn how compilers work. The code is not that neat because I focused on getting a working compiler done instead of good code.
It generates asm files which then is compiled with nasm and linked with gcc to get c runtime
package main;
import std.fmt.print;
func main() : int {
print("Hello World!")
std.fmt.print("Hello World again!")
return 0;
}odin build src --out=langer./langer ./main.l ./std -o ./main
./main