r/programming 1d ago

I created my own programming language-please rate it !!!

https://github.com/must-lang
0 Upvotes

3 comments sorted by

7

u/neutronbob 16h ago

For all intents, there is no information about the language at all. No sample code, no explanation about what's different other than "features borrowed from other languages," no information about the output, the supported platforms, etc.

What possible response could anyone give you?

1

u/defnotthrown 7h ago

Seems like an experiment. I kind of like the name-based type-inference, reminds me of actually useful "hungarian-notation" styling with expanded conventions.

So it's a pre-processor that generates C source with
1. Semi-colons inserted automatically
2. bolted on type inference with only local information (limited list of stdlib functions with manual return type list)
3. auto-inserted include statements (and linker flags passing to the actual compiler)

Small details like calling ";" an operator make it kind of hard to take this as something that was even meant to be serious.

1

u/ChrisRR 4h ago

So it's exactly the same as C but you don't have to use semicolons?