NEWTON

NEWTON


Popular tags

    Cairo: Unknown value for memory cell at address

    Asked

    6 months ago

    9

    views


    0

    I am trying to index into an array in cairo, and getting the following error:

    Unknown value for memory cell at address 13:2

    The line of code throwing the error is:

    let item = arr[index]

    This question was originally posted on Triality

      cairocairo-langstarknet

    1 answers

    0

    You are attempting to access an index in the array that is out of bounds. Make sure that index is within the bounds of the array (between 0 and arr length - 1)

    This answer was originally posted on Triality

    answered

    6 months ago

    Your answer

    NEWTON

    NEWTON