summary refs log tree commit diff stats
path: root/examples/curlex.nim
diff options
context:
space:
mode:
Diffstat (limited to 'examples/curlex.nim')
-rw-r--r--examples/curlex.nim10
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/curlex.nim b/examples/curlex.nim
deleted file mode 100644
index 21786a6ee..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://nim-lang.org/")
-  discard easy_perform(hCurl)
-  easy_cleanup(hCurl)
-