i am new to haskell can you tell me the softwares to install in haskell i have install hugs emacs but when i write any code it gives same error can you help me start i have lekash too i have installed some more packages -- View this message in context: http://haskell.1045720.n5.nabble.com/getting-started-tp4848583p4848583.html Sent from the Haskell - Haskell mailing list archive at Nabble.com.
On Wed, Sep 28, 2011 at 11:56 AM, haskell <shubhammaheshwariy@gmail.com>wrote:
i am new to haskell can you tell me the softwares to install in haskell i have install hugs emacs but when i write any code it gives same error can you help me start i have lekash too i have installed some more packages
As Ivan recommended, use Haskell Platform:
You can try to learn using this: http://www.haskell.org/haskellwiki/How_to_write_a_Haskell_program You will learn the good practices from the very beginning. Next, read "Real World Haskell". Free online, not so free Amazon.
You may also enjoy reading: http://learnyouahaskell.com/ It is also freely available online. ~dsouza On Wed, Sep 28, 2011 at 02:56:46AM -0700, haskell wrote:
i am new to haskell can you tell me the softwares to install in haskell i have install hugs emacs but when i write any code it gives same error can you help me start i have lekash too i have installed some more packages
-- View this message in context: http://haskell.1045720.n5.nabble.com/getting-started-tp4848583p4848583.html Sent from the Haskell - Haskell mailing list archive at Nabble.com.
_______________________________________________ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell
-- ~dsouza http://about.me/ds0uza gpg pub key: http://bitforest.org/~dsouza/pub/gpg-pubkey.txt
yes i h ave seen this and learn your haskell for great god and wiki books can you tell me the firat script that works so i can tell what is the problem -- View this message in context: http://haskell.1045720.n5.nabble.com/getting-started-tp4848583p4849318.html Sent from the Haskell - Haskell mailing list archive at Nabble.com.
On 29 September 2011 00:15, haskell <shubhammaheshwariy@gmail.com> wrote:
yes i h ave seen this and learn your haskell for great god and wiki books can you tell me the firat script that works so i can tell what is the problem
You want a simple working program? Put the following into a file called Hello.hs <code> main = putStrLn "Hello World!" </code> If you have GHC installed, then run "ghc --make Hello.hs" and then run the resulting Hello executable ( run "./Hello" on *nix, double-click the "Hello.exe" on Windows). For hugs I'm not too sure, but you should be able to do "hugs Hello.hs" and inside that just type in "main" (without quotes). -- Ivan Lazar Miljenovic Ivan.Miljenovic@gmail.com IvanMiljenovic.wordpress.com
i have hugs i am installing haskell-platform when i run in hugs using :load it does nothing -- View this message in context: http://haskell.1045720.n5.nabble.com/getting-started-tp4848583p4852361.html Sent from the Haskell - Haskell mailing list archive at Nabble.com.
On 29 September 2011 19:14, haskell <shubhammaheshwariy@gmail.com> wrote:
i have hugs i am installing haskell-platform when i run in hugs using :load it does nothing
Just loading a file doesn't do anything, you have to give it a command to do. Run "main" or something inside hugs. -- Ivan Lazar Miljenovic Ivan.Miljenovic@gmail.com IvanMiljenovic.wordpress.com
yes it works i have to send an email to begginers@haskell.com -- View this message in context: http://haskell.1045720.n5.nabble.com/getting-started-tp4848583p4852537.html Sent from the Haskell - Haskell mailing list archive at Nabble.com.
...and later after you got past the basics and you get to monads, if you have problems understanding them, you should try this tutorial which is a pretty good lecture http://mvanier.livejournal.com/3917.html On Thu, Sep 29, 2011 at 1:23 PM, haskell <shubhammaheshwariy@gmail.com> wrote:
yes it works i have to send an email to begginers@haskell.com
-- View this message in context: http://haskell.1045720.n5.nabble.com/getting-started-tp4848583p4852537.html Sent from the Haskell - Haskell mailing list archive at Nabble.com.
_______________________________________________ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell
thanks for the links -- View this message in context: http://haskell.1045720.n5.nabble.com/getting-started-tp4848583p4852954.html Sent from the Haskell - Haskell mailing list archive at Nabble.com.
The patience and helpfulness of this community never ceases to amaze me. Glad to be part of this bunch. Daniel.
participants (6)
-
Daniel Santa Cruz -
Diego Souza -
haskell -
Ivan Lazar Miljenovic -
Luis Cabellos -
Ovidiu Deac