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