Simple io in julia.

master
Tomasz Polgrabia 2025-03-08 10:27:32 +01:00
parent ddd8a20949
commit dac67fb8a5
1 changed files with 11 additions and 0 deletions

View File

@ -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