How to make a programming language
How would I make a programming language that compiles into HTML, and what language should I use?
Voters
Coder100 (17011)
https://craftinginterpreters.com
believe it or not any language can be made in any other language.
And it is not called compiling, that would be transpiling.
I suggest a scripting language as the start, you will learn a lot more.
IntellectualGuy (690)
@Coder100 Is python good?
Coder100 (17011)
good starting language sure
sorry i'm a bit contradictory here, but some languages are better than others. Once you have the lang down, you need to make it fast. C is fast. @IntellectualGuy
python is actually good for making languages. Here's a link to help.
https://www.geeksforgeeks.org/how-to-create-a-programming-language-using-python/