Concept Flow - Character vs string comparison
Start
Define char c = 'a'
Define string s = "a"
Compare c == s
Error or False
Compare c == s[0
True
End
This flow shows defining a character and a string, then comparing them directly (which fails) versus comparing the character to the first character of the string (which works).