mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
11 lines
222 B
Nim
11 lines
222 B
Nim
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)
|
|
|