1
vote
3answers
117 views
Compiling to idiomatic C
Are there any compilers out there for function or lisp-ish languages that compile to idiomatic C? Most compilers out there seem to provide something resembling a machine language composed of C …
0
votes
2answers
96 views
Haskell IO with Numbers
Can anyone help with this exersise?
Write a program which asks the user
for the base and height of a right
angled triangle, calculates its area
and prints it to the screen. The
interaction …
1
vote
2answers
53 views
Ambiguous type variable
Related to my earlier question on traversing data structures, I'm having a problem making my code generic when I use it along with the uniplate package. I'm dealing with the data structures in the …
5
votes
6answers
235 views
How Functional language are different from the language implementation point of view.
There is the whole new paradigm of "functional programming", which needs a total change of thought patterns compared to procedural programming. It uses higher order functions, purity, monads, etc., …
-1
votes
3answers
88 views
Choosing among alternatives in a Haskell algebraic datatype
When type X is defined as:
data X =
X { sVal :: String } |
I { iVal :: Int } |
B { bVal :: Bool }
and I want the Int inside an X value, if there is one, otherwise zero.
returnInt :: …
2
votes
2answers
123 views
reinventing the wheels: Node.JS/Event-driven programming v.s. Functional Programming?
Now there's all the hype lately about Node.JS, an event driven framework using Javascript callbacks. To my limited understanding, its primary advantage seems to be that you don't have to wait step by …
1
vote
4answers
118 views
Haskell question: constraining data types to use show
Code:
data Exp a = Const a | Eq (Exp a) (Exp a)
I want the Const a to contain a value of type show so that i can print it later. So in C# i would write:
class Const : Exp { IShow X; }
class Eq : …
1
vote
1answer
75 views
Haskell pixel drawing library linux
I wish to draw individual pixels on a screen in a window or something for real-time display in haskell.
I'm just getting started with haskell (but not functional programming, and not graphics), so …
5
votes
3answers
298 views
Haskell list comprehensions in C#
The following code is in Haskell. How would I write similar function in C#?
squareArea xs = [pi * r^2 | r <- xs]
Just to clarify... above code is a function, that takes as input a list …
1
vote
4answers
102 views
implementing a per-digit counter using the list monad
So, I was looking at the question here, and built a rather ugly solution for the problem. While trying to clean it up, I started investigating list comprehensions and the list monad. What I decided …
5
votes
1answer
73 views
Avoiding boilerplate when dealing with many unrelated types
I'm writing code that deals with values from Language.Exts.Annotated.Syntax, where a variety of types are defined that mirror the structure of a Haskell module:
data Module l = ...
data Decl l = ...
…
1
vote
2answers
102 views
Implementing a factorisation method in Haskell
Hi
I am doing question 266 at project euler and after a bit of searching, found this method of quickly finding the factors of a number. What you do is find all the permutations of the prime factors …
12
votes
4answers
279 views
Doubly Linked List in a Purely Functional Programming Language
How does one go about doing doubly linked lists in a pure functional language? That is, something like Haskell where you're not in a Monad so you don't have mutation. Is it possible? (Singly linked …
13
votes
3answers
685 views
Inferred type appears to detect an infinite loop, but what’s really happening?
In Andrew Koenig's An anecdote about ML type inference, the author uses merge sort as a learning exercise for ML and is pleased to find an "incorrect" type inference:
Much to my surprise, the …
5
votes
5answers
459 views
What algorithm to use to solve this simple mathematical problem efficiently?
I am puzzled with the following simple problem:
Given positive integers b, c, m where (b < m) is True it is to find a positive integer e such that
(b**e % m == c) is True
where ** is …
