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