fn: \
[contents]

Contents

Syntax

Syntax available \ calls:

f++ n++ output
\@ \@ @
\\ @\\ \
\t @\t *tab*
\n @\n *newline*
@\@ @
\< @\< &lt;
f++ n++ output

Description

The \ function is used for escaping characters in various ways.

n++ example

Example of \ being used with n++:

This is a line @\nthat is broken in to@\n three lines.

The above will result in the built output file having the following written to it when it reaches that point in the build process:

This is a line 
that is broken in to
 three lines.