In any case, you have to indicate at least that the first value is a byte. For 
instance:
    
    
    const LOOKUP_TABLE: array[4, byte] = [1'u8, 2, 3, 4]
    
    
    Run

or more elegant
    
    
    const LOOKUP_TABLE: array[4, byte] = [byte 1, 2, 3, 4]
    
    
    Run

Reply via email to