Close

Argentum apps can talk to the Internet

A project log for Argentum programming language

It automatically prevents all memory leaks. It doesn't use GC, so no pauses. It's compiled to machine code. It's crazy safe and fast.

andrey-kalmatskiyAndrey Kalmatskiy 01/13/2024 at 16:080 Comments

Argentum cURL bindings gives full support for reach http(s), ftp... functionality.

using httpClient{ get, Response }

...

get("https://google.com", app.&onFetched(r Response){
    log("Result code={r.status}: response size={r.body.capacity()}");
})

Discussions