Tagged Questions
Hugs 98 is a functional programming system based on Haskell 98.
8
votes
2answers
253 views
Can someone explain to me the following Haskell expression
f :: Integer -> Integer -> [Integer]
f i n = n : f (i+2) (n+i)
can someone explain to me what it does. i know it returns [0,1,4,9,16..] but i dont understand how and what n : f means
6
votes
2answers
71 views
“ERROR - C stack overflow” in Haskell using Hugs
I'm working on parsing a CSV file into a CSV type which is a list of Record which is a list of Field, which are just Strings. After inserting a new row and then trying to access the csv I get the c ...
6
votes
2answers
152 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
4answers
858 views
Differences Between Hugs, Yhc and GHCi
There are differences between Hugs, Yhc and GHCi? If there are differences, What are they?
5
votes
2answers
171 views
Writing Haskell interpreter in C++ (using ghc or hugs as library)
I'm writing a C++ application that needs to interpret and evaluate haskell code. This code isn't known at compile time but given by the user.
Is there a way to use a haskell compiler/interpreter (like ...
5
votes
2answers
80 views
Hugs type signature contains extra type constraints?
Came across this while playing with Haskell and I'm stumped:
Hugs> :type (\x -> x^2)
\x -> x ^ 2 :: (Integral a, Num b) => b -> b
What is a doing in there? How am I supposed to read ...
3
votes
3answers
132 views
Why does this Show instance in Haskell (Hugs) cause a stack overflow error?
The following is a polymorphic data type in Haskell, interpreted by Hugs. I am trying to create an instance of Show for Equality.
The instance declaration says that if a type "a" is in Show, then ...
3
votes
5answers
160 views
How to test my haskell functions
I just started with Haskell and tried to do write some tests first. Basically, I want to define some function and than call this function to check the behavior.
add :: Integer -> Integer -> ...
3
votes
1answer
231 views
Why does Hugs complain about `|` in my data type deceleration?
I'm in the process of writing a small lisp interpreter in haskell. In the process I defined this datatype, to get a less typed number.
data Number = _Int Integer
| _Rational Rational
...
2
votes
3answers
374 views
Haskell recursive list comprehension causes C Stack Overflow
So I'm making a list of prime numbers to help me learn haskell using simple trial division (no fancy stuff until I get better with the language). I'm trying to use the following code:
primes = 2 : [ ...
1
vote
1answer
107 views
Haskell syntax error!
module Blabla (DDP, create,
add, remove, addTr,
removeTr, setAS,
unsetAS, accepts, show)
where data DDP = [Integer] [Char]
[Char]
[(Integer,Char,Char,Integer,String)]
Integer Char ...
1
vote
4answers
214 views
Functions in Haskell
I'm new to functional programming. I have a basic question.
I'm using the Hugs interpreter,
I would like to write a function in Haskell; I went though several tutorials, but I'm not getting it.
...
1
vote
2answers
328 views
“Instance of Integral Float required” error
The file with following function:
type Point = (Float, Float)
type Circle = (Float, Float, Float)
getCircle :: Point -> Point -> Point -> Circle
getCircle (a, b) (c, d) (e, f) = (x, y, r)
...
1
vote
1answer
130 views
How can you change the path where Hugs98 (Haskell) looks for Module and Libraries?
I have installed Ubuntu as a virtual machine so I could use Hugs98. However, after installing I realised I couldn't use Data.Char and Data.Ratio modules. I had to load them manually with :load ...
0
votes
2answers
53 views
Enable -98 in Hugs?
Whenever I start Hugs, it always says
Haskell 98 mode: Restart with command line option -98 to enable extensions
How exactly do you do that?
0
votes
2answers
121 views
Type error Haskell, what's wrong?
I'm using hugs to compile a simple Haskell function calculating the number of permutations. I would like it to return an Integer, but I need to operate on floats.
I've tried to calculate the answer as ...
0
votes
3answers
182 views
Evaluating undefined elements in Haskell data types
if I try > fst(a, b) where a, b are undefined, I get the error that b is undefined. Even on trying snd(a, b) it is b that causes the error first. I have a background in imperative programming. I am ...
0
votes
2answers
359 views
Error: Ambiguous class occurrence “Ord”
data (Ord a) => Stree a = Null
| Fork (Stree a) a (Stree a)
mkStree :: (Ord a) => [a] -> Stree a
mkStree [] = Null
mkStree (x:xs) = Fork (mkStree smaller) x (mkStree larger)
...
0
votes
2answers
210 views
Why must named functions be in a separate file in hugs?
In Haskell in 5 steps the factorial function is defined as follows:
let fac n = if n == 0 then 1 else n * fac (n-1)
But for hugs, it says that fac needs to be in fac.h. Can anyone explain why this ...