I don't think this is possible, since [[]] quotes don't interpret escape sequences. Normally I'd suggest stripping the newlines with a string replacement function, but it doesn't look like you can get at Lua's gsub from inside PICO-8.
If you're okay with the quotes, there's:
CLS() PRINT("APPLE" .."JUICE") |
DrPete: You answered my question ! I didn't know you could put a ".." on a new line. If this is the only and most efficient way to do it - I'll take it.
Thanks !!
[Please log in to post a comment]