条件语句比较简单,类似C语言:
if mybox.height == 10 then mybox.width = 20
关键字if ... then
扩展包含else情况
if mybox.height == 10
then mybox.width = 20
else mybox.width = 10
可以缩写为:
mybox.width = if mybox.height == 10 then 20 else 10
对于循环
其格式为:
dowhile -- do loop
whiledo -- while loop