Tagged Questions
1
vote
1answer
53 views
Language.Haskell.Interpreter - how to properly call IO actions?
Following the example file, I try to dynamically call an IO action.
testHint :: Interpreter ()
testHint = do
setImportsQ [("Prelude", Nothing)]
let somecode = ...
-1
votes
2answers
151 views
Implementing a language interpreter in haskell
I want to implement an imperative language interpreter in Haskell (for educational purposes). But it's difficult for me to create right architecture for my interpreter: How should I store variables? ...
4
votes
2answers
116 views
Haskell how to use Language.Haskell.Interpreter to read config file?
How do I use the Language.Haskell.Interpreter to read the given config file and assign the values given in it to initialize variables in my program?
My config file is like:
numRecords = 10
numFields ...
2
votes
3answers
200 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?
3
votes
2answers
117 views
Haskell - help simplifying a function with advanced type features
I'm writing an interpreter for a dynamically typed language in Haskell.
Like most dynamically typed language interpreters, my program is also needs to check types in runtime. One of the most used ...
2
votes
1answer
378 views
Implementing call-by-value lambda-calculus in Haskell
When implementing call-by-value lambda-calculus in Haskell, should I force the evaluation of the arguments to a function in the object language (i.e., the call-by-value lambda-calculus) to get around ...
5
votes
0answers
134 views
System.Plugins loader seems to assume failure after seeing a failure once
I am currently working on a haskell program which takes a users input from a text box, then
compiles and loads it using the System.Plugins library in order to extract a picture to draw to the screen. ...
-5
votes
1answer
162 views
Haskell lambda interpreter? [closed]
I have a Untyped Lambda Calculus - Contextual Evaluation interpreter as homework and I need help! I have no idea how to use functional languages!
The interpreter shall supply an evaluation function, ...
1
vote
1answer
86 views
why is haskell interpreter giving me this parse error?
Doing exercises in Richard Bird's book "Introduction to Functional Programming Using Haskell," second edition. In the last line in the following code, I get the error "Parse error in pattern (n times ...
1
vote
1answer
139 views
Short-circuited boolean binary operators in Haskell
I'm building a call by name Haskell interpreter and I want to implement a function short :: Val -> Exp -> Error Val that will evaluate a value applied to an expression. I don't want to evaluate ...
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 ...
2
votes
1answer
138 views
How do I check data type in Haskell?
I'm trying to write a brainfuck interpreter in Haskell as an exercise/fun project, and I've run into a little problem.
Brainfuck's "while loop" structure is just a series of commands stuck inside of ...
6
votes
1answer
561 views
Using Haskell's Parsec for Programming Language Converter
Say I have two languages (A & B). My goal is to write some type of program to convert the syntax found in A to the equivalent of B. Currently my solution has been to use Haskell's Parsec to ...
3
votes
1answer
390 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 ...
1
vote
0answers
419 views
Haskell Interpreter
I'm currently writing an interpreter for a simple programming language and just wanted to ask on the best approach would be to tackle it.
The environment for a program is as follows:
type Env = ...
2
votes
3answers
246 views
Interpreter of a small imperative language
Hi I'm writing an interpreter of C-like, statically typed language in Haskell. I want to perform typechecking before an execution of code, but I have some problems with it. First of all, below there ...
1
vote
1answer
270 views
What does 'deferred substitution' mean?
I'm writing a simple parser/interpreter for a language. The instructions keep mentioning 'deferred substitution', as in
Extend the fun language feature described so that functions
can accept a ...
7
votes
2answers
204 views
A Haskell interpreter /w type definitions
Is there a Haskell interpreter that accepts type definitions or preferably all kinds of statements?
I've already tried ghci and hugs and none of these does that. Is there some particular reason that ...
6
votes
3answers
399 views
Simple interpreter written in Haskell, saves up print output until the end, instead of when it comes across a print statement
Below is my attempt at a very simple interpreter which is translated from the Java version of the program described in Chapter 1 of "modern compiler implementation in Java" by Andrew w. Appel, and ...
5
votes
5answers
695 views
Haskell: actual IO monad implementation, in different language?
How is IO monad actually implemented?in sense of, how would be the actual implantation of main function?
or how to call haskell function (IO) from another language and do I in that case need to ...
14
votes
6answers
6k views
Haskell interpreter on Android? [closed]
Is there a Haskell interpreter (with standard libraries) that can be installed on Android?
So that someone with an Android device can do some Haskell exercises on an Android device: write and run ...
3
votes
2answers
352 views
Problem With Defined For Loop in Haskell
I have come across the same problem, but maybe I can give a little more context in what is going on for my situation and maybe that can help.
Creating an interpreter with typedef:
interp :: Env ...
2
votes
4answers
736 views
Is it possible to define new ADTs in GHCi
While commenting on new features in ghci I wished that ghci had the ability to declare type declaration and declaring new ADT types, someone informed that it was indeed possible, and after searching I ...
16
votes
4answers
2k views
Haskell: How to write interactive interpreter on top of a State monad?
We're working on a model filesystem that uses a state monad internally. We have a type class with operations like these:
class Monad m => FS m where
isDirectory :: Path -> m Bool
children ...
7
votes
4answers
1k views
Are there any tutorials on building a simple interpreter using Alex + Happy?
I'm working on a school project where I have to build an interpreter for a simple language using Alex + Happy in Haskell.
After looking through the documentation I understand most of it, but would ...
13
votes
1answer
1k views
“Strictly positive” in Agda
I'm trying to encode some denotational semantics into Agda based on a program I wrote in Haskell.
data Value = FunVal (Value -> Value)
| PriVal Int
| ConVal Id [Value]
...
0
votes
2answers
291 views
how to simulate the concept of object identity in Haskell
I am considering the design of an interpreter for Python like object oriented language in Haskell. One particular problem I am facing is related to the concept of object identity. If we consider ...
6
votes
4answers
2k views
Differences Between Hugs, Yhc and GHCi
There are differences between Hugs, Yhc and GHCi? If there are differences, What are they?
5
votes
4answers
837 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?
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 ...
13
votes
5answers
4k views
Is there a quick-starting Haskell interpreter suitable for scripting?
Does anyone know of a quick-starting Haskell interpreter that would be suitable for use in writing shell scripts? Running 'hello world' using Hugs took 400ms on my old laptop and takes 300ms on my ...
5
votes
7answers
2k views
Haskell Interactive
I am a bit rusty on my Haskell and am looking to ramp back up. One thing I enjoy from F# is the F# Interactive shell integrated with Visual Studio: I can evaluate virtually anything (including ...