Line breaks
You can manually break lines using just strings. There are two ways to do this.
Use \n
\n
You can use to break to the next line at any place. will not be shown in the text.
Not a /
(slash) but a \
(backslash).
Use 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.
Last updated