[Haskell] getting started

2011-09-28 Thread haskell
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


Re: [Haskell] getting started

2011-09-28 Thread Luis Cabellos
On Wed, Sep 28, 2011 at 11:56 AM, 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
>
> 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.
___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell


Re: [Haskell] getting started

2011-09-28 Thread Diego Souza
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

___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell


Re: [Haskell] getting started

2011-09-28 Thread haskell
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.

___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell


Re: [Haskell] getting started

2011-09-28 Thread Ivan Lazar Miljenovic
On 29 September 2011 00:15, haskell  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


main = putStrLn "Hello World!"


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.miljeno...@gmail.com
IvanMiljenovic.wordpress.com

___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell


Re: [Haskell] getting started

2011-09-29 Thread haskell
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.

___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell


Re: [Haskell] getting started

2011-09-29 Thread Ivan Lazar Miljenovic
On 29 September 2011 19:14, haskell  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.miljeno...@gmail.com
IvanMiljenovic.wordpress.com

___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell


Re: [Haskell] getting started

2011-09-29 Thread haskell
yes it works i have to send an email to beggin...@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


Re: [Haskell] getting started

2011-09-29 Thread Ovidiu Deac
...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  wrote:
> yes it works i have to send an email to beggin...@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
>

___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell


Re: [Haskell] getting started

2011-09-29 Thread 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.

___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell


Re: [Haskell] getting started

2011-10-05 Thread Daniel Santa Cruz
The patience and helpfulness of this community never ceases to amaze me.
Glad to be part of this bunch.

Daniel.
___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell