claro-lang icon indicating copy to clipboard operation
claro-lang copied to clipboard

Implement Multi-Line Strings

Open JasonSteving99 opened this issue 3 years ago • 0 comments

It's often super annoying to create large multi-line strings in languages like Java that rely on concatenation to achieve this. I'd like something like:

var s = 
"""
This is some long multi-line string
that's spread
on many lines
""";
print(s);

printing that thing should result in multi-line output.

JasonSteving99 avatar Feb 11 '22 20:02 JasonSteving99