mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
11 lines
227 B
Nim
11 lines
227 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://force7.de/nimrod")
|
|
discard easy_perform(hCurl)
|
|
easy_cleanup(hCurl)
|
|
|