I'm writing a little hobby c64 textual adventure and I've stopped in one very concrete moment. Namely, I don't know how to quote anything inside quote.
If you have to do a lot of them, you could store it in a variable to make the code shorter (which may make it faster or slower - if this matters, measure it yourself)
You have to generate a string containing the quote character some other way than as a literal. The obvious way is to use
CHR$
, as in:One of the examples at http://www.c64-wiki.com/index.php/CHR%24 is quite similar to this.
If you have to do a lot of them, you could store it in a variable to make the code shorter (which may make it faster or slower - if this matters, measure it yourself)