Line breaks
You can manually break lines using just strings. There are two ways to do this.
You can use \n
to break to the next line at any place.
\n
will not be shown in the text.
Not a /
(slash) but a \
(backslash).
Example:
"First line\nSecond line"
Last updated