08.09.2012, 08:30
Hi, all! I am starting to learn PAWNO, and i have some questions. I know this is very simple, but please bare with me, because i am a beginner in PAWNO
What is = and ==?
What is = and ==?
new variable_A; // You create new variables ( empty "box") new variable_B; variable_A = 1; // putting some value in "boxes" variable_B = 243;
if( variable_A == variable_B ) { // if variable_B is equal to variable_A this part of code will be executed }