View Single Post
Old Nov 29th, 2005, 7:28 PM   #5
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 6 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
      if (userChoice == groupA) userWins = true;
      else userWins = false;

.. or ..

    userWins = (userChoice == groupA);

Sorry for the rather useless post, just a simple comment on semantics... as Dawei mentioned, there's a million ways...
__________________

tempest is offline   Reply With Quote