Skip to content

Instantly share code, notes, and snippets.

@clarete
Created October 1, 2017 13:09
Show Gist options
  • Save clarete/2147d17f545d46301a1b1af2931beb22 to your computer and use it in GitHub Desktop.
Save clarete/2147d17f545d46301a1b1af2931beb22 to your computer and use it in GitHub Desktop.
meme central:memescript/compiler;
requires io, c
where
io = central:stdlib/io
c = central:stdlib/curl/curl_prim
get: fun(url) {
c.curl_global_init(c.CURL_GLOBAL_DEFAULT);
var handle = c.curl_easy_init();
//c.curl_easy_cleanup(handle);
c.curl_global_cleanup();
return "foo";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment