您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011
  1. arr := [10 20 30]
  2. print arr
  3. # Lookup into the array with dot-number
  4. print arr.2
  5. # Assign to an index of the array
  6. arr.1 = "nope"
  7. print arr
  8. print []