mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 04:02:41 +00:00
11 lines
262 B
Nim
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)
|
|
|