Tagged Questions
2
votes
3answers
185 views
Are there any Stackless Python like projects for other languages (Java, Lisp, Haskell, Go etc) [closed]
Well thats the question. Are there any projects for other languages which try to imitate what stackless python is doing for python?
2
votes
1answer
60 views
Scheme - Can a Double-Quote Delimit a Number?
I'm currently implementing a web-based Scheme environment for the kicks and giggles. Whilst implementing the parser, I stumbled across an oddity: some Scheme implementations state that a number's ...
4
votes
3answers
197 views
Compiling Lisp code with read macros
I'm having a bit of trouble understanding what becomes of read macros when compiling a file of lisp code into a bytecode or raw assembly (or a fasl file for that matter). Or maybe I do understand it ...
5
votes
1answer
235 views
Eval-when uses?
After reading a lot of documentation regarding lisp eval-when operator I still can't understand its uses, I know with this operator I can control the evaluation-time of my expressions but I can't ...
2
votes
2answers
182 views
A Scheme interpreter that passes only relevant subsets of environments to eval
Is there an efficient way to build a Scheme interpreter that passes only the relevant subset of an environment to recursive eval calls?
For example, consider the following expression:
(let ([x 1]
...
2
votes
1answer
139 views
Efficient incremental hash computation during program interpretation
I'd like to write a recursively memoizing Scheme interpreter. At any point during evaluation, the interpreter should be able to detect when it receives as arguments a pair of expression and ...
0
votes
2answers
243 views
How to implement closures into a LISP interpreter
I'm currently working on a LISP interpreter written in Java. Now I stuck at the closures. I want to enable closures like this:
(define a 1000)
(define closure (lambda (a) (lambda (b) (+ a b))))
...
3
votes
2answers
188 views
Metacircular evaluator, implementing the environment
I am trying to implement the Metacircular Evaluator in Scheme according to the well-known book "Structure and Interpretation of Computer Programs" by Harold Abelson and Gerald Jay Sussman.
...
2
votes
2answers
213 views
Lisp: Evaluation of quotes
Which of the following expressions has correct lisp syntax?
(+ 1 (quote 1))
==> 1 (???)
(+ 1 (eval (quote 1))
==> 2
I'm currently writing my own lisp interpreter and not quite sure how to ...
2
votes
2answers
146 views
Looking for references describing tail recursion optimization through exceptions
I have implemented a small lisp interpretor (sapid lisp at google code) in python and sapid lisp itself. Perhaps its main characteristic is to implement tail and mutual recursion optimization through ...
6
votes
2answers
493 views
implementing lisp in Python
First: yes, i have taken a very long look at Norvig's lispy. Second: I have reused part of his code. Third: if you are one of those people that idolizes him, I know him, so feel free to ask me to tell ...
3
votes
1answer
269 views
lisp interpreter in python
I'm curious how a part of Peter Norvig's Lisp interpreter works. One can define functions in this Lisp interpreter...how does this work? I'm a beginner, and just would like a simple explanation.
...
1
vote
2answers
199 views
write lisp dialect
Do you have any advice for writing a Lisp dialect/interpreter in Python? I'd like to start off with just several basic commands, like set, print, and define or something...
I've been programming in ...
10
votes
3answers
660 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 ...
3
votes
2answers
185 views
Mapping variable argument LISP function to C function - C
I am developing a custom LISP interpreter. It won't support defining functions like in LISP, instead all functions are mapped to C functions. When it sees an expression like,
(substr 'input '1 '1)
...
9
votes
1answer
321 views
What are the tasks of the “reader” during Lisp interpretation?
I'm wondering about the purpose, or perhaps more correctly, the tasks of the "reader" during interpretation/compilation of Lisp programs.
From the pre-question-research I've just done, it seems to me ...
2
votes
1answer
901 views
lisp interpreter [duplicate]
Possible Duplicate:
What’s a good Common Lisp implementation for Windows?
where can I get common lisp interpreter for windows?
8
votes
1answer
305 views
Overhead of call-by-need / call-by-name Lisp interpreter strategy
I've a partially finished interpreter for a lexically scoped 'pure Lisp' (no set!) that uses a call-by-need evaluation model which comes down to call-by-name with simple caching, the interpreter ...
10
votes
10answers
6k views
How to write an interpreter?
I have decided to write a small interpreter as my next project, in Ruby. What knowledge/skills will I need to have to be successful?
I haven't decided on the language to interpret yet, but I am ...
2
votes
1answer
597 views
Function Table in Scheme using Association List
I am attempting to build a rudimentary interpreter in Scheme, and I want to use an association list to map to arithmetic functions. This is what i have so far:
; A data type defining an abstract ...
9
votes
3answers
1k views
What is the exact definition of a Metacircular Interpreter?
Is it legal to call a C compiler written in C or a PHP interpreter written in PHP metacircular? Is this definition valid only for languages of a specific type, like Lisp? In short, what are the ...
20
votes
10answers
2k 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 ...
8
votes
9answers
1k views
Is INTERPRETER an anti-pattern?
To me, the Interpreter patten sounds very much like an anti-pattern known as Greenspun's tenth rule:
Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, ...
8
votes
3answers
1k views
Lisp evaluation of let statements
I am writing a Scheme interpreter, and I am faced with a valid let statement such as:
;; should print 7
(let ((a 4) (b 3))
(let ((a (* a a))
(b (* b b)))
(+ a b)
(- a ...
23
votes
5answers
5k 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 ...
