Ok, I feel really stupid for not know how to do this, and I can't even find it on the internet.
I want to initialize either a char or a string to have the value "x".
I've tried several ways:
char player = "x"; //doesn't work
string player("x"); //doesn't work
What am I doing wrong??
