Close

Argentum got raw multiline string literals

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 05/17/2023 at 20:200 Comments
// Program
log("
     Hello,
     I'm a multiline "raw" string
");

// Prints:
Hello,
I'm a multiline "raw" string

 These strings have no problems of their siblings in other languages:

More examples and details are here: multiline-string-constants

Discussions