From dac67fb8a5685d77ba6f57310296e92f898278df Mon Sep 17 00:00:00 2001 From: Tomasz Polgrabia Date: Sat, 8 Mar 2025 10:27:32 +0100 Subject: [PATCH] Simple io in julia. --- current/samples/julia/io.jl | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 current/samples/julia/io.jl diff --git a/current/samples/julia/io.jl b/current/samples/julia/io.jl new file mode 100644 index 0000000..8a6e479 --- /dev/null +++ b/current/samples/julia/io.jl @@ -0,0 +1,11 @@ +lines = try + open("/etc/passwd", "r") do f + readlines(f) + end +catch + @warn "File not found" +end + +for line in lines + print("Line " * line * "\n") +end