summary refs log tree commit diff stats
path: root/examples/curlex.nim
blob: 1d0f18ddd8836bfd3c26ee1abad147dbce55ae91 (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)