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