How do I properly start creating a programming language in python? [closed]

You would probably start by first planning out your language. That should take a lot of time. Then in Python… you would write a parser that can understand the syntax of your language, and an interpreter that can take the results of the parser and perform the actions of the program.

Your language that is written in Python with Python in-turn being written in C is practically guaranteed to be very slow and will not succeed, but this could be a really fun thing to do as a learning or education experience.

Leave a Comment