As in /r/ProgrammingLanguages, we will have a thread every month where you can post PL-related projects you are working on. Unlike the main posts, this thread is much more lenient: you should post even if you only have minor updates or something tangentially related to programming languages.
How much progress have you made since last time? What new ideas have you stumbled upon, what old ideas have you abandoned? What new projects have you started? What are you working on?
Once again, feel free to share anything you’ve been working on, old or new, simple or complex, tiny or huge, whether you want to share and discuss it, or simply brag about it - or just about anything you feel like sharing!
The monthly thread is the place for you to engage /c/programming_languages on things that you might not have wanted to put up a post for - progress, ideas, maybe even a slick new chair you built in your garage. Share your projects and thoughts on others’ ideas, and most importantly, have a great and productive month!
A language designed around the idea of data mutation. Like, just doing data mutation. No functions, no stack, just here’s some data and here’s how it changes. It’s very similar to imperative languages as you might guess, but it basically removes functions from the main data path and simplifies everything which leads to some weird syntax and features.
There are still functions in some ways via a trait system kind of like Rust (also where and polymorphism appears), but it’s not quite the same.
I don’t really know exactly how to explain it beyond that, so here’s a snippet:
Not that
+=
here is not equivalent toa = a + b
, but rather+=
is the name of aNumeric
trait procedure. Using words I might call itadd
. It’sa add b
or with C+±esque syntax it’s like(&c)->add(b)
or something.There is a
File
struct in thestd
module and aWrite
trait implemented for&File
s that includes awrite(&Char)
procedure as well as an instance of an&File
called “out.” So to write a string of characters to stdout, you dostd.out write <characters>
So from this, I can say that procedures in traits in this language are like mini versions of the stuff under
[Mut]
that you can call with parameters. These procedures can also have embedded C code which is how you interact with external stuff and how the core and standard libraries are implemented.Trait and struct definitions go under
[Type]
and have their own syntaxForcing all logic to be an explicit mutation of a singular datum may end up being the worst way to program ever, but it’s at least a different way
EDIT: Conceptually this is the same, but the syntax is a bit different now
Update: I wrote up a quick manual for the language explaining concepts in more depth and reworking the syntax
Here’s a couple example programs.
hello_world.mjut
truth_machine.mjut
I think I have it fleshed out enough to get a basic version working. I’ll write up a lexer and parser tomorrow (it’s after midnight, so actually today lol) probably
Lexer done! On to parser
Parser done. Time for Code Generation. I’m going to transpile to C for now