Send Beginners mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://www.haskell.org/mailman/listinfo/beginners
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Beginners digest..."
Today's Topics:
1. Re: Questions on set up on OSX (Tim Pizey)
2. Re: Questions on set up on OSX (Chadda? Fouch?)
----------------------------------------------------------------------
Message: 1
Date: Wed, 16 Nov 2011 12:44:18 +0000
From: Tim Pizey <[email protected]>
Subject: Re: [Haskell-beginners] Questions on set up on OSX
To: Sophie <[email protected]>
Cc: [email protected]
Message-ID:
<CAArDntj5sme5qZnMHuUODLPH9m8nJcTzii2Lh9D-gDZFFt=i...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Hi Sophie,
http://aquamacs.org/ was recommended to me on my course, it came with a
haskell mode built in i believe.
However what I find I am actually using is jedit for editting/syntax
highlighting
(it comes with hs and lhs modes) and then altTab to the GHCi repl
invoked from terminal.
hope this helps
Tim
On 15 November 2011 20:24, Sophie wrote:
> I have the basic install, ghci working, going through the Real World book,
> and have some set up questions:
>
> - Is there any REPL which will take (close to) full Haskell syntax, including
> function definitions?
>
> - I use TextMate and Intelli-J, but they don't seem Haskell friendly. The
> Haskell TextMate bundle seems very confused about indenting, tabs vs. spaces,
> etc, and I could not even find a code formatter / highlighted for Intelli-J.
>
> What environments would you recommend to work with Haskell on OSX? If Emacs,
> which one? If Eclipse ... I suppose if I have to...
>
> I tried Leksah but it seems too buggy even under simple window resizing.
>
> Thanks for any pointers!!
>
> Sophie
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
--
Tim Pizey
http://pizey.net/~timp
------------------------------
Message: 2
Date: Wed, 16 Nov 2011 15:38:16 +0100
From: Chadda? Fouch? <[email protected]>
Subject: Re: [Haskell-beginners] Questions on set up on OSX
To: Sophie <[email protected]>
Cc: [email protected]
Message-ID:
<CANfjZRYLSW_42vciX6wuLbDA=2AN9hVfnMjA0e=646kb6fv...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
On Tue, Nov 15, 2011 at 9:24 PM, Sophie <[email protected]> wrote:
> I have the basic install, ghci working, going through the Real World book,
> and have some set up questions:
>
> - Is there any REPL which will take (close to) full Haskell syntax, including
> function definitions?
GHCI already accepts function definitions, you just have to keep in
mind that writing in GHCI is close to writing code in a do-block, so
you must precede definitions with "let ", you can also use multiline
(space based syntax) on recent ghci by enclosing your code in ":{"
commands. You can import with "import Module" and have access to the
full range of import syntax (qualified, as, ...). The only things that
are still missing are data definitions and typeclass definitions and
instances, though they should be possible in the next GHC release ! :)
--
Jeda?
------------------------------
_______________________________________________
Beginners mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/beginners
End of Beginners Digest, Vol 41, Issue 22
*****************************************