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.
7
votes
1answer
1k views
Sublime Text 2 - running selected python code in the interpreter
While editing a python script in the Sublime Text editor, I would like to run the script line by line, or block after block in the embedded interpreter.
Is there a convenient way how to do that? ...
2
votes
0answers
93 views
C++ Libraries to parsing [closed]
I'm doing a software to generate animations for algorithms. These algorithms are written in an interpreted language, near to C (more or less a C-oriented pseudocode). Thus, my program must interprets ...
1
vote
1answer
56 views
Do case statements have to be used for links in PHP? [closed]
I've been given a school project which involves creating an online invoicing system in PHP.
My teacher seems to be convinced that the only way to have a menu (with fixed pages like "display", etc) is ...
1
vote
3answers
356 views
Execute file in ipython interpreter
I'm trying to run a file inside the ipython interpreter.
The documentation makes this sound as simple as ipython file.py in the shell or %run file.py inside the interpreter itself. However, I want to ...
1
vote
1answer
60 views
Does a free JavaScript / ActionScript interpreter for Batch Processing exists?
I'm looking for a way to write JavaScript or ActionScript and have it read to make some batch processing tasks (converting sound files to another format, plus writing out an XML file list of the files ...
2
votes
1answer
212 views
How does mterp (Dalvik VM) organize its byte-code interprete loop?
I am studying Android Dalvik VM and encounter a question when I read the mterp code in file vm/mterp/out/InterpC-portable.cpp. Actually it's the main interpreter loop of dalvik vm to interprete the ...
0
votes
0answers
44 views
How to connect lexical scanner and parser?
I'm thinking about implementing a small interpreter with a hand-written lexer and parser.
I heard there are two approaches to combine the lexer and the parser:
pass a string to the lexer
generate ...
6
votes
2answers
264 views
Is it possible to use arrow keys in OCaml interpreter?
Everytime I use these keys in the interpreter I keep getting symbols like this appearing:
[[D^[[C
I'm using Linux Mint 12 in ZSH, however I'm getting the same result in Ubuntu with bash.
Also, same ...
0
votes
1answer
428 views
Interpreting a mathematical expression in Reverse Polish Notation (Postfix Notation)
I've found a way to convert a math expression in infix notation into postfix notation. (http://en.wikipedia.org/wiki/Shunting-yard_algorithm) But then, how should I code to interpret the result ...
0
votes
1answer
37 views
Lack of proliferation of the WSDL Standard
disclaimer:
I think this question is appropriate for this site because there may be a technical limitation I overlooked, as opposed to a mere preference based discussion.
Hello,
Is there a reason ...
1
vote
2answers
135 views
Picking a parser generator for building an interpreter for a custom language using C#? [closed]
This is the first time I go into actually trying to implement a Domain Specific Language.
I know the basics of language grammars and Abstract Syntax Trees, however I didn't get my hands dirty in ...
1
vote
2answers
43 views
Control execution speed
I am thinking of making a "programming game", i.e. where each player writes a program to control their "bot", and then the programs are pitted against each-other to see who wins (by some definition of ...
0
votes
1answer
123 views
environment variable expansion in first line of shell script
My ruby shell scripts specify the ruby interpreter in the first line of the script as:
#!/Users/me/.rvm/rubies/ruby-1.9.3-p194/bin/ruby
The problem is that when I upgrade to a new ruby version, I ...
1
vote
2answers
69 views
Why does php continue interpreting after die(); [duplicate]
Possible Duplicate:
stop php processing file
Today while playing around with PHP a noticed a strange thing
I had a block of Code where it does a job.
$images = ...
0
votes
1answer
59 views
Fast macro expansion
Currently I work on my C-Interpreter. Now I want to optimize a little bit. What is the fastest way to expand a macro? For example: I go through my whole code and find a object-like macro. From this ...
2
votes
2answers
157 views
Writing a print method in C
I am new to C and working on making an interpreter for Scheme. I am trying to get a suitable printList method to traverse through the structure.
The program takes in an input like:
(a (b c))
...
0
votes
1answer
176 views
Any suggestions about how to implement a BASIC language parser/interpreter?
I've been trying to implement a BASIC language interpreter (in C/C++) but I haven't found any book or (thorough) article which explains the process of parsing the language constructs. Some commands ...
0
votes
0answers
179 views
Any tutorial in how use RPython to build a new language/interpreter? [closed]
According to LLVM, Parrot, JVM, PyPy + python
pypy allows you to implement an interpreter in a high level language and you get a generated jit for free
I want to build (just for fun) a language ...
4
votes
1answer
276 views
ocaml interpreter
Can someone give me some help building an ocaml interpreter for the language with the syntax:
Prog ::= Def* Expr
Def ::= id id* = Expr
Expr ::= int | id | Expr '+' Expr | Expr '*' Expr | id Expr* | ...
2
votes
2answers
91 views
Python dictionaries getting re-arranged in interpreter? [duplicate]
Possible Duplicate:
Python dictionary, keep keys/values in same order as declared
I'm going through some exercises on code academy when I noticed the dictionaries I was creating inside my ...
0
votes
0answers
142 views
Best way to add a custom shared library to the python interpreter using pydev / eclipse?
How to get the auto-completion in Pydev working fine while adding / extending python with a custom shared library located in some custom place (not copied to the default python plugins directory) ? ...
-2
votes
1answer
235 views
Scala Interpreter [closed]
I'm working on an interpreter in Scala and I need to find a way to assign a variable, a name and a value that can be updated. An example input might look like this
(x = x + 1) // results to: ...
5
votes
1answer
160 views
Enable REPL power user mode (:power) from script
I am trying to dynamically interpret a string as a command in Scala. For this, from what I understand, I need to call intp.interpret("string") (where intp stands for the current interpreter and string ...
1
vote
1answer
217 views
Extern property
I am creating an interpreter from IL (A compiled C#\VB code) to C. I tried to create extern property when I interpret it I'll set my own code.
For an example:
struct String {
public extern ...
7
votes
3answers
84 views
How exactly does PHP achieve 'dynamic' variables?
I was marvelled when I tested the following code today:
$star = "Aquarius";
$star = 11;
While debugging, I observed that $star simply changes from string type to integer type. I was amazed by this ...
1
vote
2answers
62 views
Is there any way to use a list to represent procedure in a lambda caculus?
There is a simple language called lambda calculus, which is a subset of scheme. It has only 4 expressions in the following.
exp : n (1 2 3)
varref (variable reference)
(lambda (x) body) (this is a ...
2
votes
2answers
109 views
Compiler Python, why are some wrong things overlooked?
I wrote a Python routine with a mistake in it: false instead of False. However, it was not discovered at compilation. The program had to run until this line to notify the wrongdoing.
Why is it so? ...
4
votes
1answer
586 views
Open and execute file in SML interpreter from within Vim
I've been using vim for editing code for some time and now I want to use it effectively for programming in Standard ML. In emacs one can use sml-mode which allows one to open the SML intepreter ...
1
vote
1answer
136 views
Ruby on rails, markup interpreter with custom tags provided on runtime? For forms, not views
Site for writers and readers, both groups will be non-technical users (writers will be familiar with BBCode already, but I can choose other markup). Writers will write guides using markup tags to ...
3
votes
2answers
101 views
Is recursive use of eval() an alright way to inspect the execution of a program?
I've been building a basic live-evaluation javascript development environment (I call it the WEPL.) over the past few days, and realized it'd be nice to be able to associate error messages to line ...
0
votes
2answers
78 views
Why is the syntax error in the eval() code ignored?
In function code, when I do this:
eval( 'var default = 100;' );
alert( default );
the browser's JS engines* will throw a Syntax Error on the second statement, as if the first statement executed ...
1
vote
3answers
139 views
Setting default interpreter for a python script
I am using a module that can only be found in python 2.7, so when I run my script I have to specify python2.7 script instead of just script. I know there are bigger issues out there, but still I was ...
3
votes
3answers
176 views
How to build a .NET interpreter (or how does Powershell work?)
I am looking at creating a small interpreter for C# that I could load in some applications. Something that could be able to run things like this:
> var arr = new[] { 1.5,2.0 };
...
0
votes
1answer
71 views
What is environment for an interpreter?
I'm taking a course named "programming language principles."It introduces design of a simple interpreter.And Here's one piece code of this interpreter:
(define valof
(lambda (exp env)
(dmatch exp
...
4
votes
3answers
200 views
Haskell at a user level
I love coding in Haskell, but often am on a computer where I cannot install software, and which has some restrictions about what you can run. I would like to write Haskell code and test it while on ...
6
votes
3answers
375 views
Why is java both compiled and interpreted [duplicate]
Possible Duplicate:
Is Java a Compiled or an interpreted programming language?
Why is Java both compiled and interpreted language?
We first compiles the java program using javac(compiling) ...
0
votes
4answers
251 views
Developing an interactive shell
I have an application; to interact with it I have to develop an interactive shell. The shell will take input from user and dispatch it to the server, which will process and return a response.
In the ...
0
votes
1answer
85 views
What does { [native code] } mean in WebKit's Inspector?
For instance, open up a JS console, and type toString<Enter>.
You'll get this:
function toString() { [native code] }
Contrast this with:
function foo() { return 'bar'; }
foo
which ...
-1
votes
2answers
66 views
run interpreter after execute bash python
Obviously it helps to have the interpreter to debug, but I prefer to execute commands in terminal. Is there any way to make it run the python program, then startup an interpreter with the variables ...
1
vote
1answer
60 views
Interpreter-style output in Python 3 (maybe about sys.displayhook?)
I'm making a little toy command window with Tk, and currently trying to make it copy some interpreter behavior.
I'd never scrutinized the interpreter before, but it's decisions on when to print a ...
0
votes
0answers
83 views
halt-resume execution of user-supplied javascript
I've searched the web all around but maybe I'm just asking a wrong thing and Google returns me wrong answers :)
I have an AJAX-based tool that is used to test an API suit (it's not one of the many ...
2
votes
1answer
316 views
Linux ELF 32 Bits Loading
I'm writing an x86 binary interpreter.
At the moment I'm dealing with loading the executable file and shared objects. However I'm stuck with some doubts:
1) Does the dynamic linker/loader ...
0
votes
1answer
141 views
Lua interpreter for Eclipse
I am trying to run lua code in the Eclipse simulator.
The LuaEclipse plugins are installed and updated, but Eclipse is asking for a "Lua interpreter" when I try to run the code.
If I set the Lua ...
1
vote
1answer
64 views
Eclipse Antlr Interpreter failure
The following grammar successfully generates a parser for treating the string 'ccdunion'. But when I try with the interpreter, I have NoViableAltException error, why?
grammar SimpleCalc;
options {
...
2
votes
3answers
1k views
How do I change my build configuration so that cmd points to actual location of the python interpreter?
When I try to run python or any language through Sublime Text 2, all it says is
[Error 2] The system cannot find the file specified
[cmd: [u'python', u'-u', ...
0
votes
4answers
186 views
How can I use irb the Ruby interpreter to test/debug my .rb files?
How can I use irb the Ruby interpreter to test/debug my .rb files? I want to load an .rb file, let it run, and after it ends, get back to the irb prompt so I would be able to manipulate the variables ...
0
votes
2answers
65 views
How to understand PHP syntax errors? [duplicate]
I'm quite new to using PHP but this has been stumping me for a while now. Here is my test.php
<?PHP
$db = 'str1';
$sql = 'str2';
$cat = $sql . $db
echo $cat
?>
First, when i run php ...
1
vote
1answer
175 views
Designing interpreters in C [closed]
What is the typical structure of implementing an interpreter in C? What are some examples which may be referenced?
I am already familiar with flex/yacc for the parser.
Background:
I am learning ...
2
votes
1answer
233 views
Running bash commands inside a Python script
I want to create a simple "virtual bash" script using Python, that takes commands in and returns the stdio output. Something like this:
>>> output = bash('ls')
>>> print output
...
1
vote
2answers
71 views
what steps included in the program's executing in Chapter9's first program of PLAI
In PLAI's chapter9 "Understanding Recursion", at the beginning, there is an example factorial:
(with (fac (fun (n)
(if0 n
1
(* n (fac (+ n ...
