for in array循环
1.1、for in array循环语法
for (i in array) {statement...}
1.2、示例
for (i in ARGV) {print ARGV[i]}
for (i in ARGV) {
    print ARGV[i]
}