• Returns a list containing all the integers in the interval [start;end[, in increasing order.

    Parameters

    • start: number

      the start of the interval

    • end: number

      the end of the interval

    Returns List<number>

    a list of integers

    listIota(1, 4) // -> "(|1, 2, 3|)"