Tagged Questions
0
votes
1answer
32 views
How does one use the read function in Scheme? I know how it works syntactically, but the console doesn't let me enter values
I think I'm confused about how Scheme works with user input. I want to just read some values from the console that the user inputs as the script runs. For example, if I wanted to add a user's value ...
2
votes
1answer
59 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 ...
1
vote
3answers
363 views
Global pointer in C
I am new to C and I am currently implementing a Scheme interpreter in C. I am close to the end but a problem is bothering me which I have not been able to tackle yet.
I want a "globalEnvironment" ...
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))
...
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 ...
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
...
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 ...
2
votes
2answers
131 views
Python inheritance and instantiation
I struggle to understand a point in the code by Peter Norvig, 'Even better Python Lisp interpreter', here.
In eval function, aimed at parsing, he is doing the test isanstance(x,Symbol). Class Symbol ...
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 ...
3
votes
2answers
186 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.
...
1
vote
2answers
171 views
Simple interpreter in Scheme
I will describe my problem on example.
I'll get (play '(left nothing right left)). Some of the names in the list are real procedures, others i want to skip.
(define (left)
'left
)
I need to ...
4
votes
3answers
177 views
Memoization, Interpreters, and Closures
So I'm experimenting, and have a programming language created in scheme. I've built an interpreter for it as well, which is most of the code below.
I'd like to rewrite the interpreter so that it ...
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 ...
1
vote
1answer
91 views
Extending the Charme Interpreter by Defining Null and Null?
I need to help extending the Charme interpreter and defining the null and null? primitives that behave similarly to the primitive Scheme procedures. I know I can use Python's None value to represent ...
1
vote
0answers
99 views
Extending the Charme Interpreter By Adding Primitives
I need to extend the Charme (download here, described here) interpreter by adding primitive procedures cons, car and cdr that behave similarly to the primitive Scheme procedures. To start I need to ...
1
vote
1answer
75 views
Extending the Charme Interpreter
I need to extend the Charme interpreter (described here) by adding a primitive procedure <= to the global environment. I know that to do this I also need to define a procedure that implements the ...
2
votes
3answers
385 views
Java style FOR loop in a clojure interpeter?
I have a basic interpreter in clojure. Now i need to implement
for (initialisation; finish-test; loop-update) {
statements
}
inside my interpreter. I will attach my interpreter code I got so ...
0
votes
3answers
141 views
Evaluation in Scheme
ok, i have this problem here. i was asked to write a function in Scheme, that takes an "environment", and an expression and it returns the value of this expression, for the variable bindings found in ...
2
votes
2answers
802 views
Scheme & Smalltalk
Not really a question as such in here regarding Smalltalk and Scheme. I only started playing in Smalltalk 3 weeks ago and have been bouncing between Squeak and Pharo. Both are amazing its hard to ...
0
votes
4answers
219 views
VM for Scheme with support for parallelisation
I have written a Scheme evaluator in Java that does some parallelisation tricks. It's not usable by anyone but me for the moment, but I'm getting some results.
The frontend and middle-end are ok for ...
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 ...
0
votes
2answers
114 views
What kind of advantages are there to changing 'cond' to be a special form
What kind of advantages are there to changing 'cond' to be a special form instead of syntactic sugar?
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 ...
6
votes
7answers
843 views
How does code written in one language get called from another language
This is a question that I've always wanted to know the answer, but never really asked.
How does code written by one language, particularly an interpreted language, get called by code written by a ...
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 ...
10
votes
6answers
5k views
How do I get a scheme interpreter working inside Emacs?
I'm going through SICP and I'd like to have an interpreter analogous to the interactive Python interpreter to play around in while I'm watching the lectures and reading the book. Furthermore, I'd like ...