[Solved] Double and single quote for string
Posted: Thu Jan 30, 2025 2:41 pm
In python ,string can be enclose by double string or single string
I find that string can only be enclosed by double quote in oobasic.
It is a wrong expression in oobasic.I can't get rules or grammar on string in oobasic.Could you give me some description on string?
Code: Select all
s1 = "string"
s2 = 'string'
s1 == s2
True
Code: Select all
s = 'string'