Added new keywords!
1. CONTAINS
used to check if a string contains a substring
for example if the word “robotic” contains “robot” that would be:
IF word CONTAINS "robot" THEN yes = true
word is a variable with value robotic btw!
2. STARTSWITH
used to check if a string starts with something
same example:
IF word STARTSWITH "robo" THEN yes = true
3. ENDSWITH
the opposite, checks for a string at the end, like “tic” of “robotic”
IF word ENDSWITH "tic" THEN yes = true
4. BETWEEN
used to check if a numbe lies between some minum and maxium value, like if 18 lies between 10 and 20
IF age BETWEEN 10 AND 20 THEN teeneger = true