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