Difference between revisions of "Network.Curl"

From HaskellWiki
Jump to navigation Jump to search
Line 9: Line 9:
 
$ ghci
 
$ ghci
 
Prelude> :m Network.Curl
 
Prelude> :m Network.Curl
Prelude Network.Curl> let html = curlGetString "http://www.haskell.org/"
+
Prelude Network.Curl> let html = curlGetString "http://www.haskell.org/" []
 
</pre>
 
</pre>
   

Revision as of 15:41, 11 June 2008

Network.Curl

This page collections documentation and examples about the library Network.Curl, (docs) a curl binding for Haskell, developed at Galois, Inc.

Trivial Use

$ ghci
Prelude> :m Network.Curl
Prelude Network.Curl> let html = curlGetString "http://www.haskell.org/" []

External Examples and Tutorials