Tagged Questions
An interpreter is a program that executes, i.e. performs, instructions written in a programming language. The tag [interpreter] should be applied to questions concerning the programming of interpreters or for questions about the detailed inner workings of interpreters.
46
votes
8answers
7k views
How to avoid .pyc files?
Can I run the python interpreter without generating the compiled .pyc files?
38
votes
12answers
4k views
Write a Haskell interpreter in Haskell
A classic programming exercise is to write a Lisp/Scheme interpreter in Lisp/Scheme. The power of the full language can be leveraged to produce an interpreter for a subset of the language.
Is there a ...
26
votes
9answers
1k views
Do comments slow down an interpreted language?
I am asking this because I use Python, but it could apply to other interpreted languages as well (ruby, php, javascript).
Whenever I leave a comment in my code, is it slowing down the interpreter? My ...
24
votes
3answers
14k views
Python 3 online interpreter / shell
Does anyone know about an online interpreter like http://codepad.org/ or http://try-python.mired.org/ with Python 3?
23
votes
6answers
1k views
I have been trying to wrap my head around the PyPy project. So, fast-foward 5-10 years in the future what will PyPy have to offer over CPython, Jython, and IronPython?
From what I have seen and read on the blogs PyPy is a very ambitious project. What are some advantages it will bring to the table over its siblings (CPython, Jython, and IronPython)? Is it speed, ...
22
votes
13answers
3k views
create my own programming language [closed]
Possible Duplicates:
References Needed for Implementing an Interpreter in C/C++
Books On Creating Interpreted Languages
How to create a language these days?
Learning to write a compiler
...
22
votes
2answers
2k views
Drop into interpreter during arbitrary scala code location
I come from a Python background, where at any point in my code I can add
import pdb; pdb.set_trace()
and at runtime I'll be dropped into an interactive interpreter at that spot. Is there an ...
21
votes
5answers
3k views
References Needed for Implementing an Interpreter in C/C++
I find myself attached to a project to integerate an interpreter into an existing application. The language to be interpreted is a derivative of Lisp, with application-specific builtins. Individual ...
19
votes
6answers
3k views
Have you used any of the C++ interpreters (not compilers)?
I am curious if anyone have used UnderC, Cint, and Ch (or any other C++ interpreter) and could share their experience.
Thanks everyone for your valuable input.
/Allan
18
votes
4answers
256 views
Python interpreted code optimisation
Consider the following code snippet:
dict [name] = 0
dict [name] += 1
dict [name] += 1
Does the python interpreter automatically recognise the repeated references to the dictionary value and use a ...
18
votes
1answer
236 views
Why are Ruby method calls particularly slow (in comparison to other languages)?
I'm trying to read about Ruby performance, and came across this SO thread, where one of the answers mentions that "method calls, one of the most common operations in Ruby, are particularly slow."
...
18
votes
2answers
720 views
C interpreter written in javascript
Is there any C interpreter written in javascript or java ?
I don't need a full interpreter but I need to be able to do a step by step execution of the program and being able to see the values of ...
18
votes
9answers
772 views
Interpreted languages: The higher-level the faster?
I have designed around 5 experimental languages and interpreters for them so far, for education, as a hobby and for fun.
One thing I noticed: The assembly-like language featuring only subroutines and ...
17
votes
14answers
2k views
Simplest language to make an interpreter for
I want to make an interpreter of a very simple language for practice. When I say simple I don't mean easy to use, I mean simple. Brainf**k is a good example of a language I want. I already have made a ...
17
votes
6answers
2k views
What are the primitive Forth operators?
I'm interested in implementing a Forth system, just so I can get some experience building a simple VM and runtime.
When starting in Forth, one typically learns about the stack and its operators ...
16
votes
7answers
730 views
Optimisation for a brainfuck interpreter
As an exercise to help me learn about interpreters and optimisation, neither of which I know anything about, I have written a brainfuck interpreter in C. It appears to work flawlessly thus far, though ...
16
votes
4answers
997 views
Haskell: How to write interactive interpreter on top of a State monad?
We're working on a model filesystem that uses a state monad internally. We have a type class with operations like these:
class Monad m => FS m where
isDirectory :: Path -> m Bool
children ...
16
votes
9answers
1k views
Can a compiled language be homoiconic?
By definition the word homoiconic means:
Same representation of code and data
In LISP this means that you could have a quoted list and evaluate it, so (car list) would be the function and (cdr ...
16
votes
9answers
4k views
Is there an interpreter for C?
I was wondering if there is something like an interpreter for C. That is, in a Linux terminal I can type in "python" and then code in that interpreter. (I'm not sure interpreter the right word). ...
15
votes
12answers
2k views
Turing Machine Code Golf
Ok guys, today's goal is to build a Turing machine simulator. For those that don't know what it is, see the Wikipedia article. The state table we are using today is found at the end of the Formal ...
15
votes
6answers
2k views
How to invoke an interactive elisp interpreter in Emacs?
Right now I write expressions in the *scratch* buffer and test them by evaluating with C-x C-e. I would really appreciate having an interactive interpreter like SLIME or irb, in which I could test ...
14
votes
3answers
3k views
Looking for online PHP interpreter / tester
I'm looking for online PHP interpreter / tester (something like http://jsfiddle.net/ for JavaScript).
Are you familiar with one ?
13
votes
15answers
2k views
Learning Resources on Parsers, Interpreters, and Compilers
I've been wanting to play around with writing my own language for a while now (ostensibly for the learning experience) and as such need to be relatively grounded in the construction of Parsers, ...
12
votes
6answers
378 views
Is there a JavaScript (ECMAScript) implementation written in Python?
Are there any JavaScript (ECMAScript) implementations written in pure Python? It is okay even if its implementation is very slow.
12
votes
7answers
2k views
Compiled vs. Interpreted Languages
I'm trying to get a better understanding of the difference. I've found a lot of explanations online, but they tend towards the abstract differences rather than the practical implications.
Most of my ...
12
votes
4answers
1k views
Is there an alternative for flex/bison that is usable on 8-bit embedded systems?
I'm writing a small interpreter for a simple BASIC like language as an exercise on an AVR microcontroller in C using the avr-gcc toolchain. However, I'm wondering if there are any open source tools ...
12
votes
8answers
874 views
How do I unroll (compile) an interpreter loop?
I heard that some languages go from interpreted to compiled by "unrolling the interpreter loop".
Let's say I have the following pseudo-c-code interpreter for an ast tree.
int interpret(node)
{
...
12
votes
14answers
940 views
Back-end choice for a new dynamic programming language?
I've been developing a Smalltalk variant for just the fun of it and I wonder what would be a fellow stackoverflowers choice when it comes to targeting a back-end. These were my current considerations:
...
11
votes
6answers
3k views
Haskell interpreter on Android?
Is there a Haskell interpreter (with standard libraries) that can be installed on Android?
So that someone with an Android device can do some Haskell exercises on an Android device: write and run ...
11
votes
1answer
562 views
Python Compilation/Interpretation Process
Hey all, I'm trying to understand the python compiler/interpreter process more clearly. Unfortunately, I have not taken a class in interpreters nor have I read much about them.
Basically, what I ...
11
votes
8answers
1k views
Books On Creating Interpreted Languages [closed]
Are there ANY books (maybe even long tutorials) which cover making a basic, interpreted language?
11
votes
10answers
773 views
Learning how programming languages work
I've been programming for years (mainly Python), but I don't understand what happens behind the scenes when I compile or execute my code.
In the vein of a question I asked earlier about operating ...
11
votes
7answers
1k views
Language w/ the smallest interpreter written in itself [closed]
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 ...
11
votes
9answers
2k views
What is the difference between implementing a compiler and an interpreter?
I've read the whole Dragon Book recently (just for fun, I'm not really planning to implement an actual compiler), and I was left with this big question dangling in my head.
What is different between ...
11
votes
8answers
3k views
Detecting infinite loop in brainfuck program
I have written a simple brainfuck interpreter in MATLAB script language. It is fed random bf programs to execute (as part of a genetic algorithm project). The problem I face is, the program turns out ...
10
votes
1answer
500 views
How to call the scala interpreter in a Simple Build Tool project?
my scala program is using the compiler interface from scala.tools.nsc.interpreter.IMain. When I am compiling with scalac, everything works as expected. But when I compile with sbt it still compiles, ...
10
votes
3answers
319 views
How does one implement a “stackless” interpreted language?
I am making my own Lisp-like interpreted language, and I want to do tail call optimization. I want to free my interpreter from the C stack so I can manage my own jumps from function to function and my ...
10
votes
5answers
2k views
Is there a quick-starting Haskell interpreter suitable for scripting?
Does anyone know of a quick-starting Haskell interpreter that would be suitable for use in writing shell scripts? Running 'hello world' using Hugs took 400ms on my old laptop and takes 300ms on my ...
10
votes
3answers
1k views
Why does the Interpreter Pattern suck?
In Steve Yegge's review of Design Patterns, he calls the Interpreter Pattern an "in-joke". He goes on to talk about how the perception of compilers have changed, yet how interpreted languages are ...
10
votes
12answers
2k views
OK Programming language from USB stick with no installation
I'm looking for a compiler or interpreter for a language with basic math support and File IO which can be executed directly from a memorystick in either Linux or Windows. Built in functionality for ...
10
votes
10answers
4k views
Best GUI Python Interpreter [closed]
When I'm trying to hack out an idea I find the Python interpreter is an invaluable to tool to quickly get a working prototype and iterate on it. I've been using IDLE bundled with Python on Windows and ...
9
votes
5answers
171 views
How can I speed up array cloning in C#?
I'm working on my solution to the Cult of the Bound Variable problem.
Part of the problem has you implement an interpreter for the "ancient" Universal Machine. I've implemented an intepreter for the ...
9
votes
5answers
489 views
List of web-based interpreters of various programming languages
Let's say you're away from your computer and all you've got is a web browser. You'd still like to run a piece of code (e.g. to check an answer on SO). What are your options?
Let's create a list of ...
9
votes
5answers
194 views
What libraries would be useful for implementing a small language interpreter in C?
For my own learning experience, I want to try writing an interpreter for a simple programming language in C – the main thing I think I need is a hash table library, but a general purpose collection of ...
9
votes
3answers
269 views
Is it possible to execute server-side javascript from a *Python* Google App Engine instance?
A lot of questions have been asked and answered about running server-side javascript on Google App Engine, but all of the answers deal with Java instances in order to make use of Java-based JS ...
9
votes
9answers
562 views
Is the primary implementation of *any* popular programming language interpreter written in C++?
At the moment I am considering whether or not to rewrite a programming language interpreter that I maintain in C++. The interpreter is currently implemented in C.
But I was wondering, is the primary ...
9
votes
7answers
158 views
Ignoring (serious) errors to keep the program alive?
One of the main things I wanted to achieve in my experimental programming language was: When errors occur (Syntax, Name, Type, etc.) keep the program running, no matter how serious or devastating it ...
9
votes
1answer
730 views
“Strictly positive” in Agda
I'm trying to encode some denotational semantics into Agda based on a program I wrote in Haskell.
data Value = FunVal (Value -> Value)
| PriVal Int
| ConVal Id [Value]
...
9
votes
2answers
1k views
Printing Unicode from Scala interpreter
When using the scala interpreter (i.e. running the command 'scala' on the commandline), I am not able to print unicode characters correctly. Of course a-z, A-Z, etc. are printed correctly, but for ...
9
votes
4answers
1k views
C# Scripting language
This is a somewhat odd question.
I want to provide a scripting language for modding games that I build for XNA. If I was deplying these games for the PC then I would just be able to use C# files, ...