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