vote up 5 vote down star
2

What is the smallest (code-golf) interpreter that is written in the language it interprets.

I think overall this would be a good indicator as to the balance of how robust a language is.

Extremely simple (turing tarpits) languages are difficult to write large programs like interpreters in.

More 'sugary' languages are simpler to write in, but require a more complicated interpreter.

I'm looking for a balance between the two.

I would also like to include compiled languages, but I'm not sure if it's fair to compare interpreters and compilers.

Thanks!

flag
3  
I think you may need to be a little more strict on the requirements of the language. – JesperE Aug 10 at 5:47
3  
And this should really be CW. – JesperE Aug 10 at 5:47
1  
...waiting for the first answer using lisp... – JesperE Aug 10 at 8:15
The first thing I thought of was the Scheme interpreter in Scheme from SICP, which goes along w/ lisp. – ajray Aug 10 at 19:58
Nice question. Its rare to see a truly thought provoking question here. – Paul Biggar Aug 11 at 20:02

6 Answers

vote up 10 vote down

Formal answer:

The "empty" language where there is just one valid program, the empty program, which does nothing. The empty program is also a valid interpreter for this language, because when given the empty program, it does nothing, which is a valid interpretation of that program.

Another language, the language "Hello world", consists of just one valid program: "Hello world" which contains one instruction "printHelloWorld" which prints Hello World. It too, is a valid interpreter for "Hello world" programs. When given a "Hello world" program, it prints hello world, which is a valid interpretation.

Useful answer:

Scheme is probably one of the simplest languages that can implement an interpreter for itself, because its parsing is nearly trivial, and its semantics are simple yet powerful.

I don't think it is indeed a good measure of "robustness", just of the ratio between expressiveness (of interpreter writing) and complexity. Indeed, this is good evidence that Scheme's expressiveness in the realm of language interpretation is very high compared to its size/complexity.

link|flag
vote up 4 vote down

python:

exec "code"
link|flag
2  
I don't think this answer deserves a downvote - the problem is in the question, not the answer! – caf Aug 10 at 7:11
True. A trivial solution is still a solution. – outis Aug 10 at 8:34
I apologize. It appears I just asked a bad question. – ajray Aug 10 at 19:58
I don't think this is a "solution" to the question asked. The actual code that's interpreting the Python program is not written in Python - you're calling on the Python interpreter (most likely written in C) to interpret it for you. Therefore your "interpreter" is actually written in another language, even if the calling code is Python. – Chris Lutz Sep 5 at 0:51
@Chris Lutz: I know, this was not a serious answer. – hasen j Sep 5 at 3:13
vote up 3 vote down

Alan Kay, in "The Early History of Smalltalk":

One day, in a typical PARC hallway bullsession, Ted Kaeh;er, Dan Ingalls, and I were standing around talking about programming languages. The subject pf power came up and the two of them wondered how large a language one would have to make to get great power. With as much panache as I could muster, I asserted that you could define the "most powerful language in the world" in "a page of code." They said, "Put up or shut up."

Needless to say, he picked the former.

link|flag
vote up 1 vote down

In rebuttal to Aaron Digulla's answer:

If language X is a Turing-complete language for which interpreters exist, then it must be possible to write an interpreter for language X, in language X.

Proof:

If language X is Turing-complete, then it can therefore compute any computable function.

If interpreters exist for language X, then an interpreter for language X must be a computable function.

Ergo, language X must be able to run an interpreter for language X.

link|flag
So we can count on you to implement this? – Anders Eurenius Aug 12 at 7:39
vote up 1 vote down

Using Scheme:

(define (scheme)
  (write (eval (read)))
  (scheme))

Simple : ).

link|flag
vote up 0 vote down

I think you're looking for meta circular interpreters. Straight from the famous Portland wiki (I don't claim to understand this):

For example, here is a simple metacircular interpreter in arbitrary dialect Forth:

: myInterpreter
  begin 32 word find dup if execute else number then again ;
link|flag
1  
Forth is a space delimited language. "32 word" get the text of the next token. "find" returns the executable address of the word if it's already defined. If the token is defined, and "find" finds it, then it's executed. Otherwise it's passed to "number" which converts the text in to a number and pushes on to the stack. If "number" can't convert it, it'll likely abort with an error, stopping the loop. Otherwise, rinse and repeat. Thats the essence of how this works. – Will Hartung Sep 5 at 0:57

Your Answer

Get an OpenID
or

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