import Crafter.CppDOM; import std; using namespace Crafter::CppDOMBindings; int main(){ void* body = GetElementById("body"); SetInnerHTML(body, "

Fetch Example

Testing HTTP requests...

"); Fetch("https://httpbin.org/get", [body](std::string result){ if (!result.empty()) { SetInnerHTML(body, "

Fetch Example

Response: " + result + "

"); } else { SetInnerHTML(body, "

Fetch Example

Failed to fetch data

"); } FreeJs(body); }); }