lines = try
open("/etc/passwd", "r") do f
readlines(f)
end
catch
@warn "File not found"
for line in lines
print("Line " * line * "\n")