If function
Posted: Sun Jan 15, 2006 5:23 pm
How the if function works? Not the same way as in many programming programmes. (visual basic, lotus script, html)
if (condition==true)
{
execute this code;
...
}
else if (condition!=true)
{
execute this code;
...
}
else execute this code;