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