For example, I want to print something like this in the output:
The following is just an example:
How's your day?
As you can see, there's an empty line in the middle, how do you actually do that in lua? And no, I don't want to use print("") to make an empty line. I want to print all of that out in just a single print("The following ... day?")
Hey anphu04,
print("The following is an example:\n\nHow's your day?")
~~ KingLoneCat
I haven’t tested this and I don’t even know if print is supposed to work this way, but you can try something like this :
print(“The following is an example : My day is good, thank you.”)
My code may look weird since I typed this on mobile, but you can put the first text in, press enter two times, then put the other text and finish it off with a ) .