I was wondering if it is possbile to have an IF statement within an IF statement; IF-ception if you will.
Any replies or alternative suggestions would be appreciated

Thanks,
Daz
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
...
## Pseudocode!
if today = "Saturday" then
if the time > 7_PM then
go_to_the_cinemas
else
visit_the_zoo
bring_the_kids
end if
end if
...
Code: Select all
on mouseup
if 4 = 4 then
if 5=6 then
answer "Uh,oh, math is not working"
else answer "whew, math is still OK"
end if
end mouseup