3
votes
1answer
102 views
how to implement objects for toy language ?
I am trying to make a toy language in c++. I have used boost spirit for the grammar, and hopefully for parser/lexer. The idea is a toy language where 'everything is an object' like …
2
votes
2answers
65 views
Include jar file in Scala interpreter
Is it possible to include a jar file run running the Scala interpreter?
My code is working when I compile from scalac:
scalac script.scala -classpath *.jar
But I would like to …
2
votes
7answers
144 views
Restricted Python intepreter?
Is there a restricted Python intepreter?
Imagine a Python VM you can run on your machine, that restricts the operations.
No files can be opened, no system calls, etc.
It just tran …
6
votes
5answers
161 views
What are the main issues in designing an interpreter for a functional language?
Suppose I want to implement an interpreter for a functional language. I would like to understand the issues involved in doing so and suitable literature that is available. This is …
0
votes
8answers
127 views
What is the advantages an interpreted language has over a compiled language? [closed]
Possible Duplicate:
What’s with the love of dynamic Languages
I have already read this, but I do not get it.
What use is making your own interpreter. Also, it says …
2
votes
2answers
137 views
CPython is bytecode interpreter?
I don't really get the concept of "bytecode interpreter" in the context of CPython. Can someone shed some light over the whole picture?
Does it mean that CPython will compile and …
10
votes
10answers
326 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 …
1
vote
1answer
53 views
Is “Jint - Javascript Interpreter for .NET” reliable?
I've seen jint in Codeplex. It looks very interesting. Have you used it? Is 0.8.4 stable and usable in your opinion? (production quality?)
3
votes
4answers
527 views
How is (==) defined in Haskell?
I'm writing a small functional programming language in Haskell, but I can't find a definition of how (==) is implemented, as this seems to be quite tricky?
0
votes
3answers
48 views
Simple method for accepting command-line input for a standard Windows service written in C#?
Hey stackoverflow,
I have written a pretty simple Windows service in C# that starts up automatically and runs A-okay. I was wondering the best method to have the service accept co …
3
votes
13answers
299 views
What language can a junior programmer implement an interpreter for it?
My college is going to start soon, but I want to do something in the remaining weeks :)
I've taken a course last semester about programming languages and I want to bring my knowle …
0
votes
4answers
152 views
Python | How to make local variable global, after script execution
Here is the code. What I need to do is find a way to make 'i' global so that upon repeated executions the value of 'i' will increment by 1 instead of being reset to 0 everytime. Th …
1
vote
4answers
274 views
Examples of interpreters embedded in iPhone Applications?
I'm trying to find examples of interpreted languages ported to the iPhone, with source code available to show how to embed it, without Jailbreaking the device:
I've found:
Ruby: …
2
votes
2answers
109 views
How to write a linker.
I have written a compiler for C that outputs byte code. The reason for this was to be able to write applications for an embedded platform that runs on multiple platforms.
I have …
9
votes
9answers
451 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 l …
