The essential part first:
julia> a,b,c,d=map(parse,split("9 2 2 1.3\n"))
4-element Array{Real,1}:
9
2
2
1.3
but see what you actually get back...
julia> typeof(a)
Int64
julia> typeof(d)
Float64
That's Julia's type inferencing at play. And functional abilities (map, parse). See the manual on those.
Now as originally needed...
julia> io=IOBuffer("9 2 2 1.3\n")
IOBuffer(data=UInt8[...], readable=true, writable=false, seekable=true, append=false, size=10, maxsize=Inf, ptr=1, mark=-1)
julia> n,nup,ndn,a=map(parse,split(readline(io)))
4-element Array{Real,1}:
9
2
2
1.3
julia> typeof(n)
Int64
julia> typeof(a)
Float64
It's probably better to do it properly in a function rather than like that as a one-liner - so you can catch exceptions, etc.
-- Adrian.