peta julia dengan array

array = Int[1,2,3]
map(x -> x * 2, array) # 2, 4, 6
SteveMcT