Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How would I go about creating my own web programming language?

0
Posted

How would I go about creating my own web programming language?

0

Before you start creating your own web language, you should be familiar with the distinction between client-side language and server-side language. From the way you speak, you seems to still be confused about it. So the first step is to actually learn to use an existing web language and write a real website using it; you should get a decent amount of experience in using a web language before you can create your own. Next is designing the language, you need to design the look and feel of your language (i.e. syntax). Whether to use braces or indentation or keywords for block structure or if you have other ideas for structuring the program. You then need to write a parser for the language. The parser will read a text string and turn that into an in-memory representation (e.g. abstract syntax tree) that can either be compiled (for compiled language) or interpreted (for interpreted language). If you take the compiled language approach, you will either need to learn assembly and write a comp

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.