11 lines
142 B
Text
11 lines
142 B
Text
|
|
julia> args = [ "first", (1,2,17), "last" ]
|
||
|
|
3-element Array{Any,1}:
|
||
|
|
"first"
|
||
|
|
(1,2,17)
|
||
|
|
"last
|
||
|
|
|
||
|
|
julia> print_each(args...)
|
||
|
|
first
|
||
|
|
(1,2,17)
|
||
|
|
last
|