vote up -6 vote down star

Is there any way to create a interpreted language(Without yacc or parsers)?

flag

Not sure what you mean... a language, a parser, a compiler? – pgb Nov 7 at 21:58
What language? To do what? You could write a "language" using C++ – Apikot Nov 7 at 21:59
Possible dupes: stackoverflow.com/questions/1550025/…, stackoverflow.com/questions/926161/… – Dirk Eddelbuettel Nov 7 at 22:03
Root questions for compilers and interpreters: stackoverflow.com/questions/1669/… . I know that question says compilers, but the underling work is the same. – dmckee Nov 8 at 1:16

closed as not a real question by ChrisF, Rik, Dirk Eddelbuettel, voyager, Konrad Rudolph Nov 7 at 22:09

7 Answers

vote up 2 vote down

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.

link|flag
vote up 0 vote down
  1. Let's build a compiler
  2. Tiny C Compiler By Fabrice Bellard
  3. Small C Compiler

All uses simple recursive descent parser, easy to understand. good luck !

link|flag
1  
You mixed up your first two links. – Arthur Reutenauer Nov 7 at 22:51
Edited - thanks! – Joe Nov 8 at 2:15
vote up 4 vote down

Yes, of course. I just created a programming language:

+ means increase value
? means print value

Here's a program in my new language:

+++?++?++++?

Output:

3
5
9

Now I'll just create an interpreter or a compiler for it. :)

link|flag
2  
Looks good! And brilliantly documented! – Dominic Bou-Samra Nov 7 at 22:03
4  
Just one flaw, the initial value is not specified so big chance several compilers/interpretors give different results. – Gamecat Nov 7 at 22:07
1  
Is it turing complete? – voyager Nov 7 at 22:12
@voyager: I doubt it, you basically have a single cell instead of an infinite tape. – Arthur Reutenauer Nov 7 at 22:28
@voyager: Obviously not. – starblue Nov 7 at 22:28
show 4 more comments
vote up 0 vote down

what i understand is you want to build a programming language so you need write a compiler which is not an easy thing :)

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Look at ANTLR

link|flag
vote up 10 vote down

Yes, there are many ways.

link|flag
dont know why this has been voted down ~ exact match to the question ;) – devio Nov 7 at 22:03
How would you parse the input without writing a parser for the input? – Pete Kirkham Nov 7 at 23:01

Not the answer you're looking for? Browse other questions tagged or ask your own question.