Hey all.
I'm trying to write an IF statement that compares 3 characters: s, d and t with a user entered character.
Here's what i've got:
What is wrong with this?Code:character = TextIO.getlnChar;
if(character != 's' && character != 'd' && character != 't'){
valid = false
}
else{
valid = true
}
Thanks for the help.
Mike

