Hey so I looked everywhere on the Help&Info page, but I couldn't find the syntax for variable declaration and accessing variables, at least not clearly. So I have a few questions. I do know java and python languages, but I don't know this one. How would I do this script in this sites language? (below is in java)
int gender = 0;
//if they go to page 1
gender++:
//else do nothing
//then later in the script:
if (gender == 0) System.out.print("she ") ;
else System.out.print("he ");
--
so if gender = 0 then it shows she, and if not it shows he. Also if you can, please explain the basic syntax rules of this language, it's kind of hard to understand without a clear explanation.