Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Welcome to the dark side of programming. Would you care to try some of this here LLVM?
-
@rant1ng getting a basic interpreter up and running is pretty easy, and a ton of fun, especially if you know a functional programming language. Try making a simple Lisp/Scheme interpreter, or an interpreter for an assembly language.
Also now that I think about it, it's funny how both of the above example are so close to two of the great mathematical foundations of computation - lambda calculus and Turing machines.
You can try out another foundational concept, combinator calculus, by building an interpreter for an SKI combinator system. -
In the context of writing interpreters I always recommend https://craftinginterpreters.com and https://interpreterbook.com .
-
Wrote some basic assembly compiler to my machine code. Then wrote basic nodejs make build system...what's next...
-
mirimmad8496y@bootleg-dev They are the best. Back in January, I was short of money but was eager to lay hands on Interpreter book. I contacted Thorsten, he sent me a free copy (digital).
-
@mirimmad Yes, also there is now a sequel, the compiler book: https://compilerbook.com/
I already got it but I hadn't had the time to start reading it yet. -
lxmcf204106y@rant1ng preferably build a compiler for a already known language but then build a compiler and runtime for my own language
-
rant1ng45676y@lxmcf its actually a dream/goal of mine
I slot it into one of those things I'll do in a number of years from now, and even then, a maybe, it's a huge task, obviously
it would be a programming language with 0 learning curve for "normal" people to interact with their iot shit
I know, I know *ducks under eggs thrown* ..... I know
but 20 years from now, I bet someone will do that, or sooner
*ducks away from boot thrown*
I know, shutup! -
rant1ng45676y@lxmcf go for it man
plan it out, dedicate the resources, see the dream, and do it :)
must be a reason you want to? or just for the fun of it? -
lxmcf204106y@rant1ng because I can really, I can't seem to finish projects so why not build something that could help others finish there own projects, help others be better than me tbh
-
@lxmcf and that is how it should be when you're starting off, yes.
Have a look at it after you're done building a few though, lol. -
lxmcf204106y@RememberMe ah fair point, still only in the pre-production stage of an interpreter so still a long ways off
-
@rant1ng wouldn't you say that Python already does that? I mean, being easy to learn was literally a design goal and its effect can been seen in its massive popularity outside mainstream dev.
Also, there's only so much that you can do to simplify a language, if you simplify too much it can actually end up being much more complicated to do anything but very basic stuff. There is a baseline level of complexity that just has to be there. -
rant1ng45676y@lxmcf
don't start something you won't finish
finish something you think you'll never finish
you'll get good at making sure you don't waste your time in the future
trust me, even if the project goes nowhere, it pays off in experience points for the next thing you do -
lxmcf204106y@rant1ng Oh i know i can finish all of my projects but I just loose interest or start over complicating things, was building a simple CLI game and wanted to make it easy to build more content so ended up building an extensive modding system that just took over all my time and led into other projects...
My ego is like a disease when it comes to my projects.
Turns out writing interpreters is just a gateway drug and all I want to do now is build a compiler and custom language runtime...
random