I honestly must be missing something.
So I have this nice syntax.
"Hello darling" #THIS!
print "Hello world!"
Why the hello darling doesn't throw syntax error. I mean, there's no print
statement. The "Hello world" just sits there. And from the syntax highlight, the hello world is a string, not a comment.
This also works.
7
print "8"
And 7 is obviously an integer. The 7 just sits there, not referenced to a variable, just there. "Syntaxless"
Question: Why it works? Both 7 and "Hello Darling" is integer and string, but not comment. I mean, if this is a comment, well it make senses since the interpreter ignores comment, but this is not.