| |
Zifter
Posts: 318
Score: 0
Joined: 1/5/2005
From: Belgium
Status: offline
|
you'll also need to replace if (num1>10) then deal1() with if (num1>10) then deal1() That makes: if (num1>10) then deal1() else deal2() end if If you have an "if" condition without an "else", you can write it on the same line, otherwise you'll have to put it on the next. HTH
|
|