I want this:
print("abc"..(EnterButtonUsed).."def")
Output
abc
def
I want this:
print("abc"..(EnterButtonUsed).."def")
Output
abc
def
print("abc\ndef")
\n is used when you want to make a new line in strings (text), and make sure not to space it from other words.
Small correction: print("abc\ndef");
You don’t want spaces in this example!
\n basically creates a new line in texts.
Oh, yes, thank you for pointing that out. I’d forgot