summary refs log tree commit diff stats
path: root/examples/curlex.nim
blob: 9dadd9a907a8d597e29ca13622c491a10ab29043 (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://force7.de/nimrod")
  discard easy_perform(hCurl)
  easy_cleanup(hCurl)