blob: 017956818dc6b9993c04340eae0a0b56750f4b49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import
libcurl
var hCurl = easy_init()
if hCurl != nil:
discard easy_setopt(hCurl, OPT_VERBOSE, true)
discard easy_setopt(hCurl, OPT_URL, "http://nim-lang.org/")
discard easy_perform(hCurl)
easy_cleanup(hCurl)
|