Return to Snippet

Revision: 60249
at October 27, 2012 09:36 by tuffstudio


Initial Code
var text = <>
this
is
my
multi-line
text
</>.toString();
Print(text);

Initial URL


Initial Description
prints:

this
is
my
multi-line
text

note
If you want to support special XML chars, you can use a CDATA section:

<><![CDATA[

>>> hello

]]></>.toString();

Initial Title
multi-line text

Initial Tags


Initial Language
JavaScript