Hi. Im trying to get an if statmentwhich says something like if some variable equals some number do something. if anyone knows how to do this than pleese tell me. thanks.
you’re toying with us?
if(somevar >= 1)
{
// do some code here
}
if(somevar < 1)
{
// do some other code here
// Surely You're Joking, Mr. Feynman!
}
Jim Cullen