[Haskell-cafe] Coding Standards (Coding Conventions)

2007-05-28 Thread Philipp Volgger
I wonder if there are any Coding Standards or Coding Conventions for Haskell. Does anybody know something about it? Kind regards, Philipp Volgger ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell

Re: [Haskell-cafe] Random idea

2007-05-20 Thread Philipp Volgger
For me it gives: 1 + 1 Maybe you meant: . v But the rest of the commands seems working ;) Andrew Coppin schrieb: Rodrigo Queiro wrote: http://lambdabot.codersbase.com/ Wait, what the hell...? 1 + 1 /usr/lib/ghc-6.4.2/package.conf: openFile: does not exist (No such file or directory)

[Haskell-cafe] Problems with Hs-Plugins

2007-05-05 Thread Philipp Volgger
I tried following very simple program: module Main where import System.Eval.Haskell main = do i - eval 1 + 6 :: Int [] :: IO (Maybe Int) if isJust i then putStrLn (show (fromJust i)) else return () I compile it with ghc -c Main.hs and everything seems fine. When I run it with ghc

[Haskell-cafe] Is Hs-Plugins dead?

2007-05-01 Thread Philipp Volgger
Is Hs-Plugins still under develeopment; is there still somebody who is updating it? ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] FIT for Haskell

2007-04-30 Thread Philipp Volgger
Who wrote FIT for Haskell on http://darcs.haskell.org/FIT/? Does anybody know if the version is stable? ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] IDE support

2007-04-22 Thread Philipp Volgger
What IDE support is available for Haskell (Visuall Haskell, EclipseFP), anything else? ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Installation of hs-plugins

2007-04-21 Thread Philipp Volgger
: From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Philipp Volgger could somebody please tell me how hs-plugins has to be installed. I tried it with hs-plguin 1.0rc1 and I was unable to build it. I did runhaskell Setup.lhs configure runhaskell Setup.lhs build (Crash

[Haskell-cafe] Installation of hs-plugins

2007-04-20 Thread Philipp Volgger
Hello everybody, could somebody please tell me how hs-plugins has to be installed. I tried it with hs-plguin 1.0rc1 and I was unable to build it. I did runhaskell Setup.lhs configure runhaskell Setup.lhs build (Crash without any information) I tried it wiht GHC 6.4, 6.4.1 and 6.6. I

[Haskell-cafe] Function call by string

2007-04-08 Thread Philipp Volgger
Hello everybody! Can me somebody say how I can call a function by string? Thus I want to have a function that has as argument a string (name of a function to call) and then tries to call that function, a kind of: functionCall :: String - [String] - RetVal functionCall functionName arguments =

Re: [Haskell-cafe] Function call by string

2007-04-08 Thread Philipp Volgger
the input. Maybe it will be the best to look there (interpreter code of GHCi) Thank you :) Lennart Augustsson schrieb: It sounds like you need to generate some kind of Haskell stubs given the Java signatures. On Apr 8, 2007, at 11:16 , Philipp Volgger wrote: Well my problem is the following. I