Created
October 1, 2017 13:09
-
-
Save clarete/2147d17f545d46301a1b1af2931beb22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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