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 76B

12345678
  1. arr := [10 20 30]
  2. print arr
  3. print arr.2
  4. arr.1 = "nope"
  5. print arr
  6. print []