°
Strong strings are enclosed by double quotes
Strong strings are somehow complementary to weak strings:
Explicit evaluators inside the string are ignored.
When a strong string is explicitly evaluated, it keeps the double quotes.
Example:
a = 2 b = 3 MyStrongString = "(a+b)" Print 'Result is (MyStrongString)' Result is "(a+b)"