diff --git a/404.html b/404.html index 897500a..8d17c88 100644 --- a/404.html +++ b/404.html @@ -511,6 +511,48 @@ +
  • + + + + + Exceptions + + + + +
  • + + + + + + + + + + +
  • + + + + + File Handling + + + + +
  • + + + + + + + + + +
  • diff --git a/arrays.html b/arrays.html index c19d19a..3b41efe 100644 --- a/arrays.html +++ b/arrays.html @@ -524,6 +524,48 @@ +
  • + + + + + Exceptions + + + + +
  • + + + + + + + + + + +
  • + + + + + File Handling + + + + +
  • + + + + + + + + + +
  • @@ -866,6 +908,7 @@
  • arr_pop(array, index) - removes an item from the end of the array
  • arr_append(array, item) - adds an item to the end of the array
  • -
  • arr_extend(array1, array2) - adds all the items of an array to the end of the array
  • +
  • arr_extend(array1, array2) - adds all the items of an array to + the end of the array
  • arr_find(array, index) - returns the item at the specified index
  • -
  • arr_slice(array, start, end) - returns the items from the specified start index to the specified end index
  • +
  • arr_slice(array, start, end) - returns the items from the specified + start index to the specified end index
  • methods.rn
     1
      2
    @@ -902,7 +947,7 @@ 

    Array methods16 17 18 -19

    var arr = [1, 2, 3, 4, 5]
    +19
    arr = [1, 2, 3, 4, 5]
     print(arr_len(arr)) # 5
     
     arr_push(arr, 6)
    @@ -931,20 +976,22 @@ 

    Array operators (Development)2 3 4 -5

    var arr1 = [1, 2, 3]
    -var arr2 = [4, 5, 6]
    +5
    arr1 = [1, 2, 3]
    +arr2 = [4, 5, 6]
     
     print(arr1 + arr2) # [1, 2, 3, 4, 5, 6]
     print(arr1 * 2) # [1, 2, 3, 1, 2, 3]
     

    Array standard library