Ok, so a week or so ago, I made a program that would prompt a string, using the Input command, and then put it into a message for the user to see:
PROGRAM:HMMYES
ClrHome
Input "WORD:",Str1
ClrHome
"Hmm, yes, the "+Str1+"here is made out of "+Str1+"."-->Str2
Output(1,1,Str2
I figured out that any string I inputted into the program, even if it had double quotes (") in the middle, would show up in the final result.
For example, if I put in just " for Str1, it would output:
Hmm, yes, the " here is made out of ".
I did some experimentation and figured out that this worked with any program, and changed what the Input command was followed by, and found that as long as you are prompting a string with the Input command, you can put double quotes into it.
This could mean a whole world of new things that could happen with strings containing double quotes, and although there are still some [obvious] limitations, we now know that Input, and (to an extent) Disp and Output( are able to do this. I hope what I found will benefit the TI-BASIC community.