blob: 21786a6eeb608baa44be3453c69b165463fa0b77 (
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)
|