Scriptol/For In
外观
< Scriptol
标准语法使用范围内的元素为变量赋值,Scriptol 使用常见的写法,在两个值(或变量)之间使用双点来表示范围。
for int x in 0 .. 10 print x /for
如果结构体的主体只有一个语句,则使用简化的语法。
for int x in 0 .. 10 print x
for 控制结构可以像上面那样扫描一个整数,也可以扫描一个文本或一个数组。
text hello = "hello" for text t in hello print t
array a = { 1, 2, 3 } for dyn x in a print x