At Wed, 03 May 2006 22:06:05 -0700,
Jeremy Shaw wrote:
>
> Hello,
>
> I believe I have successfully got an unregisterised version of ghc
> 6.4.2 compiled for arm/linux.
Updates:
---
1) I turns out I only had a in-place build of ghc, I have now got a
real build 'working'.
2) I have start
Hi,So I'm interested in working on the project on improving numerics performance in GHC proposed on the SoC page herehttp://hackage.haskell.org/trac/summer-of-code/ticket/13
Since I have a full time job, I'd just like to do this on my own time rather than take up an SoC slot.In that vein, Don Stewa
I sometimes do this
-<
class (Show c) => C c where
foo = show c
data CObj= forall c. (C c, Show c) => CObj c
instance C Cobj where -- my existantial type should also implement class C
foo (CObj c) = foo c
->
Would it be a nice idea to just write
-<
data CObj= forall c. (C c, Sho
Michael Marte wrote:
Simon Marlow wrote:
Deprecation warnings seem to be working fine:
$ ghc -c Foo.hs -package text
Foo.hs:2:0:
Warning: Module `Pretty' is deprecated:
This module has moved to Text.PrettyPrint.HughesPJ
Also, the documentation for the text package clearly
Simon Marlow wrote:
Deprecation warnings seem to be working fine:
$ ghc -c Foo.hs -package text
Foo.hs:2:0:
Warning: Module `Pretty' is deprecated:
This module has moved to Text.PrettyPrint.HughesPJ
Also, the documentation for the text package clearly states in several
plac
Duncan Coutts wrote:
On Wed, 2006-05-03 at 22:06 -0700, Jeremy Shaw wrote:
Hello,
I believe I have successfully got an unregisterised version of ghc
6.4.2 compiled for arm/linux.
Cool! Well done. I know there are several people who wanted to use ghc
on the 770. Previously hugs and yhc have
Lemmih wrote:
On 5/4/06, Donald Bruce Stewart <[EMAIL PROTECTED]> wrote:
geoffw:
>
> I have an application written in OCaml that I'm interested in
> porting over to Haskell, and I was wondering what the best way
to replace
> the following OCaml function would be:
>
> Toploop.initi
On Wed, 2006-05-03 at 22:06 -0700, Jeremy Shaw wrote:
> Hello,
>
> I believe I have successfully got an unregisterised version of ghc
> 6.4.2 compiled for arm/linux.
Cool! Well done. I know there are several people who wanted to use ghc
on the 770. Previously hugs and yhc have been made to work o
| /me ponders an api ...
|
| Something like:
|
| > GHC.Top.init
| > f <- run "let add1 x = x + 1"
| > f 7
| 8
GHC's api has a clear notion of a "session" that I believe we should not
lose. So it'd be
> s <- GHC.Top.init
> f <- run s "\x -> x+1"
> f 7
He
Jeremy
Good stuff!
Often when you do something like this you learn a lot of things you wish
you'd known at the outset. Do please consider adding anything you have
learned to the GHC developer's Wiki
http://hackage.haskell.org/trac/ghc
That way you'd help someone else avoid the things
10 matches
Mail list logo