julia> versioninfo()
Julia Version 0.4.0-dev+323
Commit ecd039c* (2014-08-24 16:57 UTC)
Platform Info:
  System: Linux (x86_64-redhat-linux)
  CPU: Intel(R) Xeon(R) CPU E7- 4830  @ 2.13GHz
  WORD_SIZE: 64
  BLAS: libopenblas (USE64BITINT NO_AFFINITY NEHALEM)
  LAPACK: libopenblas
  LIBM: libopenlibm
  LLVM: libLLVM-3.3

julia> map((x,y,z)->x+y+z,[1,2,3],[2,3,4],[3,4,5])
3-element Array{Int64,1}:
  6
  9
 12

julia> map((x,y,z)->x+y+z,(1,2,3),(2,3,4),(3,4,5))
ERROR: BoundsError()
 in heads at tuple.jl:56
 in map at tuple.jl:59 (repeats 4 times)

Reply via email to