You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

arrays.l2 151B

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 []