A simple scripting language in C++
Ferenc Szontágh
2025-04-18 9a186053a690f2216b43355549c8aa7e2959583c
1
2
3
4
5
string $url = "https://jsonplaceholder.typicode.com/todos/1";
 
string $response = curlGet($url);
 
printnl("Response: ", $response);