Eray Ozkural <[EMAIL PROTECTED]> writes


> Still, having come from that realm of old-school-AI-language-interpreters I
> have difficulty using GHCi because I can't define functions interactively.
> Would it be possible to introduce a mode to do that?
> [..]
> and perhaps going into "interactive" modules which would be separate
> namespaces.
>
> And if LISP can do it, why can't you? ;)
> [..]


The following works in  ghc-5.02:

  ghci 
  ...
  Prelude> let {g:: Integer->Integer;  g 0 = 0;  g n = n+(g $ pred n)}
  Prelude> g 0
  0
  Prelude> g 3
  6

But        Prelude> let {type T = Int;  n = 1 :: T}
does not. 
I wonder, whether there is any good reason for such distinction.

I would like too Haskell to behave like a good interpreter, with 
self-applicability, dynamic features, like, maybe, some Lisp
systems do.

-----------------
Serge Mechveliani
[EMAIL PROTECTED]


_______________________________________________
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users

Reply via email to