Haskell list
as there is a Haskell API that might cover the requirement.
Simon Beaumont
---
On 13 Jun 2013, at 06:18, Eric Schulte wrote:
> Simon Beaumont writes:
>
>> Well that's really odd: I modded the paths in init.el and did the following:
>>
#'org-babel-haskell-read-string
(cdr (member org-babel-haskell-eoe
(reverse (mapcar #'org-babel-trim raw)))
but results is nil
__
I might be worth noting I am running on OS X not Linux but the raw data
Whenever I try and evaluate the Haskell code block I get:
"Code block returned no value."
#+begin_src haskell :results value
let fac n = product [1..n]
[(x,fac x) | x <- [0..11]]
#+end_src
#+results:
I am using ghci as my haskell-program
The Haskell source is correctly executed in the *has