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. How can I read package document? (S. H. Aegis)
2. Re: How can I read package document? (Mateusz Kowalczyk)
3. Re: How can I read package document? (S. H. Aegis)
4. Re: How can I read package document? (Sam Coles)
5. Re: How can I read package document? (S. H. Aegis)
----------------------------------------------------------------------
Message: 1
Date: Sun, 8 Dec 2013 09:21:32 +0900
From: "S. H. Aegis" <[email protected]>
To: "[email protected]" <[email protected]>
Subject: [Haskell-beginners] How can I read package document?
Message-ID:
<CAJp-Nqy2k=ibjro54lngruua-yvcg4veh4cdehhjaygroia...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
Hi. I'm new to Haskell.
I installed Palindromes package through cabal.
But I don't know the usage of command.
(Not enough information on Home Page.)
How can I read document?
Thank you. =)
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20131208/f4a1f73e/attachment-0001.html>
------------------------------
Message: 2
Date: Sun, 08 Dec 2013 00:51:56 +0000
From: Mateusz Kowalczyk <[email protected]>
To: [email protected]
Subject: Re: [Haskell-beginners] How can I read package document?
Message-ID: <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1
On 08/12/13 00:21, S. H. Aegis wrote:
> Hi. I'm new to Haskell.
> I installed Palindromes package through cabal.
> But I don't know the usage of command.
> (Not enough information on Home Page.)
> How can I read document?
> Thank you. =)
>
>
>
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
Usually you'd check the documentation on Hackage[1] and if that's not
enough, you'd seek help in the source itself[2]. In this case, there are
some comments in the source that might interest you.
[1]: http://hackage.haskell.org/package/palindromes
[2]:
http://hackage.haskell.org/package/palindromes-0.4/docs/src/Data-Algorithms-Palindromes-Palindromes.html
--
Mateusz K.
------------------------------
Message: 3
Date: Sun, 8 Dec 2013 14:23:58 +0900
From: "S. H. Aegis" <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] How can I read package document?
Message-ID: <-2703127754525991104@unknownmsgid>
Content-Type: text/plain; charset=UTF-8
Thank you so much !
I wish have a nice day .
Sok H. Chang
2013. 12. 8. ?? 9:52 Mateusz Kowalczyk <[email protected]> ??:
>> On 08/12/13 00:21, S. H. Aegis wrote:
>> Hi. I'm new to Haskell.
>> I installed Palindromes package through cabal.
>> But I don't know the usage of command.
>> (Not enough information on Home Page.)
>> How can I read document?
>> Thank you. =)
>>
>>
>>
>> _______________________________________________
>> Beginners mailing list
>> [email protected]
>> http://www.haskell.org/mailman/listinfo/beginners
> Usually you'd check the documentation on Hackage[1] and if that's not
> enough, you'd seek help in the source itself[2]. In this case, there are
> some comments in the source that might interest you.
>
> [1]: http://hackage.haskell.org/package/palindromes
> [2]:
> http://hackage.haskell.org/package/palindromes-0.4/docs/src/Data-Algorithms-Palindromes-Palindromes.html
>
> --
> Mateusz K.
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
------------------------------
Message: 4
Date: Sun, 8 Dec 2013 02:13:32 -0600
From: Sam Coles <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] How can I read package document?
Message-ID:
<canodc_rh1bxhzjh9b58t1dfz+8h1fj+amungs5069onicyu...@mail.gmail.com>
Content-Type: text/plain; charset="euc-kr"
You can also run the commands below to generate the documentation. This is
very useful because some of the documentation on the new hackage is
broken/incomplete.
cd ~/src
cabal unpack palindromes #untars the package into a dir in the current
dir
cd palindromes-0.4
cabal configure
cabal haddock #generates documentation
cd dist/doc/html/palindromes/ #index.html is in this directory
On Sat, Dec 7, 2013 at 11:23 PM, S. H. Aegis <[email protected]> wrote:
> Thank you so much !
> I wish have a nice day .
>
> Sok H. Chang
>
> 2013. 12. 8. ?? 9:52 Mateusz Kowalczyk <[email protected]> ??:
>
> >> On 08/12/13 00:21, S. H. Aegis wrote:
> >> Hi. I'm new to Haskell.
> >> I installed Palindromes package through cabal.
> >> But I don't know the usage of command.
> >> (Not enough information on Home Page.)
> >> How can I read document?
> >> Thank you. =)
> >>
> >>
> >>
> >> _______________________________________________
> >> Beginners mailing list
> >> [email protected]
> >> http://www.haskell.org/mailman/listinfo/beginners
> > Usually you'd check the documentation on Hackage[1] and if that's not
> > enough, you'd seek help in the source itself[2]. In this case, there are
> > some comments in the source that might interest you.
> >
> > [1]: http://hackage.haskell.org/package/palindromes
> > [2]:
> >
> http://hackage.haskell.org/package/palindromes-0.4/docs/src/Data-Algorithms-Palindromes-Palindromes.html
> >
> > --
> > Mateusz K.
> > _______________________________________________
> > Beginners mailing list
> > [email protected]
> > http://www.haskell.org/mailman/listinfo/beginners
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20131208/db521d53/attachment-0001.html>
------------------------------
Message: 5
Date: Sun, 8 Dec 2013 17:57:07 +0900
From: "S. H. Aegis" <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] How can I read package document?
Message-ID: <-1553686211342827818@unknownmsgid>
Content-Type: text/plain; charset="utf-8"
Thank you so much.
This is what I want. =)
Have a nice day.
Sok H. Chang
2013. 12. 8. ?? 5:13 Sam Coles <[email protected]> ??:
You can also run the commands below to generate the documentation. This is
very useful because some of the documentation on the new hackage is
broken/incomplete.
cd ~/src
cabal unpack palindromes #untars the package into a dir in the current
dir
cd palindromes-0.4
cabal configure
cabal haddock #generates documentation
cd dist/doc/html/palindromes/ #index.html is in this directory
On Sat, Dec 7, 2013 at 11:23 PM, S. H. Aegis <[email protected]> wrote:
> Thank you so much !
> I wish have a nice day .
>
> Sok H. Chang
>
> 2013. 12. 8. ?? 9:52 Mateusz Kowalczyk <[email protected]> ??:
>
> >> On 08/12/13 00:21, S. H. Aegis wrote:
> >> Hi. I'm new to Haskell.
> >> I installed Palindromes package through cabal.
> >> But I don't know the usage of command.
> >> (Not enough information on Home Page.)
> >> How can I read document?
> >> Thank you. =)
> >>
> >>
> >>
> >> _______________________________________________
> >> Beginners mailing list
> >> [email protected]
> >> http://www.haskell.org/mailman/listinfo/beginners
> > Usually you'd check the documentation on Hackage[1] and if that's not
> > enough, you'd seek help in the source itself[2]. In this case, there are
> > some comments in the source that might interest you.
> >
> > [1]: http://hackage.haskell.org/package/palindromes
> > [2]:
> >
> http://hackage.haskell.org/package/palindromes-0.4/docs/src/Data-Algorithms-Palindromes-Palindromes.html
> >
> > --
> > Mateusz K.
> > _______________________________________________
> > Beginners mailing list
> > [email protected]
> > http://www.haskell.org/mailman/listinfo/beginners
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
_______________________________________________
Beginners mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/beginners
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20131208/4f74e890/attachment-0001.html>
------------------------------
Subject: Digest Footer
_______________________________________________
Beginners mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/beginners
------------------------------
End of Beginners Digest, Vol 66, Issue 5
****************************************