Line breaks
You can manually break lines using just strings. There are two ways to do this.
Line-break symbol
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"
Multiline strings
Using [[]]
instead of ""
will allow you to create a string that takes up multiple lines.
You simply make an actual line break, and it will work.
Example:
[[First line
Second line]]
Last updated