So let's say that I have a string of text with "Then chaos ensued..." and I want to display it character by character using, for example, the following 84+CSE BASIC code:
Code:
Then how would I make sure that SourceCoder doesn't parse "Then " and "..." as the Then instruction nor the ... token? I know that to prevent pi from being parsed as the pi symbol you can use [p]i instead, but I cannot seem to find any equivalent code distinguishing specific tokens from individual lowercase letters in the list of tokens/instructions and I did a forum search for "Sourcecoder lowercase problem" without the quotes, to no avail.
Another thing I have tried to ensure that the three dots are displayed as separate characters was to edit the code on-calc, then upload the file to SourceCoder, but then when exporting to the calc after saving my project the ellipsis token was back.
Thanks in advance.
Code:
"Then chaos ensued..."
For(Z,1,21
Output(1,Z,Sub(Ans,Z,1
For(X,0,200
End
End
Then how would I make sure that SourceCoder doesn't parse "Then " and "..." as the Then instruction nor the ... token? I know that to prevent pi from being parsed as the pi symbol you can use [p]i instead, but I cannot seem to find any equivalent code distinguishing specific tokens from individual lowercase letters in the list of tokens/instructions and I did a forum search for "Sourcecoder lowercase problem" without the quotes, to no avail.
Another thing I have tried to ensure that the three dots are displayed as separate characters was to edit the code on-calc, then upload the file to SourceCoder, but then when exporting to the calc after saving my project the ellipsis token was back.
Thanks in advance.