I'm just curious if PBP could differentiate between caps and lower case? i.e.

Would this:
Code:
IF command[0] = "G" AND command[1] = "C" THEN
  ' Do Whatever
ENDIF

IF command[0] = "G" AND command[1] = "Q" THEN
  ' Do Whatever
ENDIF
Produce the same results as this:
Code:
IF command[0] = "g" AND command[1] = "c" THEN
  ' Do Whatever 
ENDIF

IF command[0] = "g" AND command[1] = "q" THEN
  ' Do Whatever
ENDIF
If this is too elemental of a question I apologize for any inconvenience.