IsaacMcCracken/JamLang
The Jam Programing Language
The Jam Programing language is a language I created for the fun of learning. Syntactically resembling go and zig. I have no current ambition to take over in the language war. If you want a good new language to use I suggest zig. I may or may not finish this project.
Currently I have the AST able to emit bytecode for mathematical expressions and it can run that on a extremely simple 8-bit virtual machine.
sample hello_world.jam
program that will be compilable in the future.
func main() i32 {
@print("Hello, Mom.\n")
}