Is there any way to create a interpreted language(Without yacc or parsers)?
|
|
|||||||||
|
closed as not a real question by ChrisF, Rik, Dirk Eddelbuettel, voyager, Konrad Rudolph Nov 7 at 22:09 |
|
|
I read a really nice forum post ' How do people create new programming languages? ' at http://forums.devshed.com/beginner-programming-16/how-do-people-create-new-programming-languages-530633.html it gives you basic knowledge of how programming languages are developed and the common programming languages that are used to create other programming languages. after you have decided the work flow of your programming language, you need to find a good way to parse the code and understand it like a compiler or a parser does. |
||
|
|
|
|
All uses simple recursive descent parser, easy to understand. good luck ! |
||||||
|
|
|
Yes, of course. I just created a programming language:
Here's a program in my new language:
Output:
Now I'll just create an interpreter or a compiler for it. :) |
||||||||||||||||
|
|
|
what i understand is you want to build a programming language so you need write a compiler which is not an easy thing :) |
||
|
|
|
|
Anyone could make up any old language they like, though I guess it would only be a functional language if it was associated with a compiler. Define your language, write an interpreter (or compiler) for it in some other language (like assembly), and there you have it - your own language. |
||
|
|
|
|
Look at ANTLR |
||
|
|
|
|
Yes, there are many ways. |
||||
|
