Posted 03 January 2014 - 11:11 AM
On an advanced computer if you do print("hi") in the editor it is red I am asking you to make stuff like print("He took a \"Turd\".") in the editor red
print("Hello, this is red.") --#would highlight the string red
print("Hello, I call this color \"red\".") --#while syntatically correct, the syntax highlighter in the editor will only highlight the first and second set of quotations
You should be able to work around this yourself.print('Hello, using "single quotations" to start and end my string, I am able to do what you need')
As far as I know, this should display the entire string as red like you want.