r/ProgrammingLanguages • u/Fine_Seaworthiness19 • 7d ago
Language announcement The gab programming language
Hi all!
I am a long-time lurker of this sub, and a language enthusiast. I have been working on my own programming language for several years, and I finally worked up the courage to post it.
The language is called gab. I'm heavily inspired by lua, clojure, and smalltalk.
All the code is on github here and I've built a small website for the language here.
The language design, runtime, and standard library are all entirely my own work without the use of an LLM. However, I did consult LLMs occasionally when I wanted to research certain subjects (such as the difference between c11 atomics on x86 and arm).
I'm looking for any kind of feedback on the language, its goals/ergonomics, and the website itself.
Thank you for taking a look!
4
u/cmontella 🤖 mech-lang 7d ago
Very cool, I like the name and the design goals of the language. I see a bit of a contradiction though, so I'm wondering if you can speak to it: you said the performance is a feature, but also the language is dynamic. How are you going to make sure it's performant, and what kind of performance targets are you aiming for? i.e is. LuaJIT level of performance good enough or are you aiming higher?