Network.Curl
From HaskellWiki
(Difference between revisions)
| Line 6: | Line 6: | ||
<h2>Trivial Use</h2> | <h2>Trivial Use</h2> | ||
| + | <pre> | ||
| + | $ ghci | ||
| + | Prelude> :m Network.Curl | ||
| + | Prelude Network.Curl> let html = curlGetString "http://www.haskell.org/" | ||
| + | </pre> | ||
<h2>External Examples and Tutorials</h2> | <h2>External Examples and Tutorials</h2> | ||
Revision as of 15:40, 11 June 2008
1 Network.Curl
This page collections documentation and examples about the library Network.Curl, (docs) a curl binding for Haskell, developed at Galois, Inc.
2 Trivial Use
$ ghci Prelude> :m Network.Curl Prelude Network.Curl> let html = curlGetString "http://www.haskell.org/"
