this post was submitted on 13 Aug 2024
30 points (100.0% liked)

Programming Languages

1151 readers
2 users here now

Hello!

This is the current Lemmy equivalent of https://www.reddit.com/r/ProgrammingLanguages/.

The content and rules are the same here as they are over there. Taken directly from the /r/ProgrammingLanguages overview:

This community is dedicated to the theory, design and implementation of programming languages.

Be nice to each other. Flame wars and rants are not welcomed. Please also put some effort into your post.

This isn't the right place to ask questions such as "What language should I use for X", "what language should I learn", and "what's your favorite language". Such questions should be posted in /c/learn_programming or /c/programming.

This is the right place for posts like the following:

See /r/ProgrammingLanguages for specific examples

Related online communities

founded 1 year ago
MODERATORS
 

Even though it's very unlikely to become popular (and if so, it will probably take a while), there's a lot you learn from creating a programming language that applies to other areas of software development. Plus, it's fun!

top 10 comments
sorted by: hot top controversial new old
[–] ColonelThirtyTwo@pawb.social 8 points 1 month ago

I know I'm sidetracking the point but I despise projects - particularly game engines - that make up their own language and force you to use it.

Making a language is a good exercise and learning experience, but making a good language is hard.

[–] sik0fewl@lemmy.ca 5 points 4 weeks ago* (last edited 4 weeks ago)

If you want to give it a try, I highly recommend the book Crafting Interpreters. It's also available online in HTML format.

Edit: RTFA and I see that's what the author did as well!

[–] neidu2@feddit.nl 5 points 1 month ago (1 children)

Designing a language is easy. But the better the language is, the harder it is to make a compiler.

Gui.present(DoThatThingThatIWant(data))

[–] ericjmorey@programming.dev 1 points 1 month ago

Let the LLM fill in the details

[–] j4k3@lemmy.world 3 points 1 month ago

I'll likely never get to or understand enough for the proje, but I dream of knowing FORTH well enough to write a threaded interpreter for a microcontroller, or something that a LLM agent could use in an unsupervised loop.

[–] nik9000@programming.dev 3 points 1 month ago

I work on a language for a living. It's fun! It's a job. But it's fun.

I'm not super involved with the traditional language parts. The design and parsing and optimization. I spent most of my time on the runtime. We're embedded in another big system and there's a lot of things to make it nice.

I spent the day wiring up more profile information for the times the runtime has to go async. Then I'll fix up some docs generation stuff. Eventually I'll get back to fun shadowing edge case in the new syntax I'm building.

[–] juliebean@lemm.ee 2 points 1 month ago (1 children)
[–] ericjmorey@programming.dev 3 points 1 month ago

There are some things that it is better to begin than to refuse, even though the end may be dark.

[–] sxan@midwest.social 2 points 1 month ago

I did, once. While I never completed a compiler, it was an utter disaster, in that - in retrospect - it was everything I've subsequently learned to hate about PLs: multiple ways of solving the same problems, multiple modalities, and lots of rules. I was picking the best things I liked from many PLs and putting them all into one PL, and it was a horrible idea. I didn't start from fundamentals, and there was no BNF.

I still have the design document, which was fairly complete in describing the syntax and operation; enough that I'm pretty sure that with some time and effort with a good LLM, I could probably get the LLM to build an interpreter or compiler. But looking back on it, man. Was that a complete waste of time.

I don't think I learned anything from the experience. Having had a long career and deep exposure to a wide variety of languages taught me more about what I value than anything else. For example, my favorite interview question for developers became: "what aspects of language X (that we're hiring you for) do you dislike the most, and why? What are the biggest points of pain about the language?" Anybody can learn sufficient surface knowledge about a language to hiring tests; it's the demonstration of understanding the pitfalls that's most valuable.

[–] ericjmorey@programming.dev 1 points 1 month ago

You should preach to the choir.