Re: GHCJS now runs Template Haskell on node.js - Any interest in out of process TH for general cross compilation?

2014-07-05 Thread Scott Turner
It installed and worked on my Nexus 5. On 2014-07-04 00:43, Dominick Samperi wrote: > Hello John, > I tried to install the Haskell demo Cube on my Nexus 7 > and got: Error: package file was not signed correctly. > D > > On Thu, Jul 3, 2014 at 4:47 PM, John Meacham wrote: >> In case anyone wanted

Re: "case" of an empty type should have no branches

2011-10-10 Thread Scott Turner
On 2011-10-09 07:26, Roman Beslik wrote: > Why the following code does not work? >> data Empty >> quodlibet :: Empty -> a >> quodlibet x = case x of > "parse error (possibly incorrect indentation)" It's a potential extension to ghc. See http://hackage.haskell.org/trac/ghc/ticket/2431

Re: [Haskell] ANN: extcore 1.0

2011-01-13 Thread Scott Turner
On 2011-01-13 14:45, Tim Chevalier wrote: > Documentation for the External Core format itself lives at > http://www.haskell.org/ghc/docs/latest/html/ext-core/core.pdf Didn't find it there, but did find it at http://www.haskell.org/ghc/docs/latest/core.pdf _

Re: Type checker's expected and inferred types (reformatted)

2009-10-31 Thread Scott Turner
On Wednesday 28 October 2009 08:14:46 John Lato wrote: > >> Isaac Dupree wrote: > >>> ghci: > >>> Prelude> \x -> (3+x) + (length x) > >>> > >>> :1:15: > >>>Couldn't match expected type `[a]' against inferred type `Int' > >>>In the second argument of `(+)', namely `(length x)' > >>>In t