How to can I develop a programming language like Coffee Script?

前端 未结 3 646
耶瑟儿~
耶瑟儿~ 2021-02-09 10:17

What are the initial requirement that i need to know to develop a programming language like coffee script that basically has its own syntax but after compilation changes into an

3条回答
  •  温柔的废话
    2021-02-09 11:02

    The initial requirements are:

    • Determine the target computer language
    • Develop the syntax of your new language
    • Map the syntax of your new language to the target language.

    You'll still have plenty of work ahead, but basically, you're translating your new language into a target language.

提交回复
热议问题