On Mon, Mar 16, 2015 at 4:27 PM, J Luis <jmfl...@gmail.com> wrote: > And another thing, why does it have to print the numbers in hexa? > > julia> a = Uint8[1, 255] > 2-element Array{Uint8,1}: > 0x01 > 0xff > > julia> a[2] > 0xff > > Note that if you actually *print* the number (but not the array), it will print in decimal:
julia> println(a[2]) 255 Don't we all understand better the decimal system? > Apparently not: https://www.youtube.com/watch?v=l4bmZ1gRqCc Cheers! Kevin