diff options
Diffstat (limited to 'examples/curlex.nim')
-rwxr-xr-x | examples/curlex.nim | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/curlex.nim b/examples/curlex.nim deleted file mode 100755 index 1d0f18ddd..000000000 --- a/examples/curlex.nim +++ /dev/null @@ -1,10 +0,0 @@ -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) - |