Package Name | URL | Version |
---|---|---|
CSV.jl | v0.5.11 | |
HTTP.jl | v0.8.4 | |
XLSX.jl | v0.5.4 | |
JSON2.jl | v0.3.1 |
Input/Output in Julia is implemented by first choosing the appropriate IOStream object—a file, the user terminal, or a network object—and then applying the desired function over that stream. The general idea is to open the stream, perform the required operations, and then close the stream.
Concerning the ...