Files
Nim/tests/curltest.nim
2010-02-14 00:29:35 +01:00

11 lines
262 B
Nim

import
libcurl
var hCurl = curl_easy_init()
if hCurl != nil:
discard curl_easy_setopt(hCurl, CURLOPT_VERBOSE, True)
discard curl_easy_setopt(hCurl, CURLOPT_URL, "http://nimrod.ethexor.com")
discard curl_easy_perform(hCurl)
curl_easy_cleanup(hCurl)