arrow_upward
Is it possible to create my own language??
#1
Is it possible to create my own language??  I am very new to this but I would also like to know if it is possible to create my own programming language.



#2
Yeah, sure you can do it. Just build your own lexer and parser



#3
Yeah its relatively easy depending on how much functionality you want. Every thing you want to do like looping, iterating, adding, subtracting, creating variables of different types will need to be coded in by you. Additionally you will need a lexer, parser, interpreter and debugger. You not only have to write the code for your language but also the code required to run it.



#4
Yes, but it will take a toll on your mental health, just check the story of the guy who created TempleOS



#5
Before you even think about this try learning af programming language first.
Making your own isn't something you just can do.