2
votes
0answers
61 views

Mathematics of interpretation [closed]

My programming languages textbook explains how interpreters work by providing Scheme programs. For example, there is a procedure that determines whether a variable falls within the scope of an ...
3
votes
1answer
380 views

Does runtime generally use an imperative-like interpretation of functional language code

I have a general question about interpreters of functional languages: Are there actually any advantages to using a functional language versus an imperative language at runtime (or that make there way ...
9
votes
2answers
256 views

What are some obvious optimizations for a virtual machine implementing a functional language?

I'm working on an intermediate language and a virtual machine to run a functional language with a couple of "problematic" properties: Lexical namespaces (closures) Dynamically growing call stack A ...
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] ...
1
vote
3answers
362 views

Standard ML repeat last command, left arrow?

I am learning standard ML using its interpreter. Sometimes I make typo and just want to repeat the previous command like in Linux shell. However, up arrow will end up with printing special characters ...
3
votes
1answer
221 views

Javascript: why the access to closure variable might be slow

Recently I've read this performance guide Let's make the web faster and was puzzled by "Avoiding pitfalls with closures" recommendations (as if these advices were given for CommonLisp users where ...
3
votes
7answers
583 views

Functional Language for Untyped Lambda Calculus

Is there an interpreter (or compiler) for untyped lambda calculus? (According to this thread it's possible.) I recognize that it would be of little use as a programming language, particularly if much ...
0
votes
2answers
59 views

Deciding the type of a custom langauge [closed]

I am thinking about small language specifically for graphs that would provide a lot of functionality to manipulate graphs and the like. So when I was pondering over the syntax of the language, I ...
3
votes
1answer
466 views

Resources on implementation of functional languages [closed]

Which are the resources on implementation of interpreters/compilers for functional languages? I would like practical examples, and I already have a copy of The Implementation of Functional Programming ...
7
votes
3answers
543 views

Implementing a direct-threaded interpreter in a functional language like OCaml

In C/C++ you can implement a direct threaded interpreter with an array of function pointers. The array represents your program - an array of operations. Each of the operation functions must end in a ...
6
votes
4answers
2k views

Fast Standard ML compiler or bytecode interpreter, with read-eval-print loop, for Linux?

For use with a class I'll be teaching, I'm looking for a fast compiler or bytecode interpreter for Standard ML. I'm looking for fast compile times; any reasonable run time will do. Bonus if the ...
9
votes
5answers
926 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 a new language that ...
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 ...
59
votes
14answers
7k 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 ...
3
votes
2answers
466 views

Functional programming and equation solvers

Just as a personal experiment, in order to try to learn better about programming and formal language theory and the like, I'm trying to write a language that basically takes in a bunch of equations ...
4
votes
5answers
800 views

Using ML in “Real-World” Applications

I really liked learning ML at college. I find functional programming often a refreshingly elegant way to write certain algorithms. I have heard of F# and played around with that a bit. Still, I've ...