diff --git a/V-for-Go-developers.md b/V-for-Go-developers.md index bdaaa08..b3ac249 100644 --- a/V-for-Go-developers.md +++ b/V-for-Go-developers.md @@ -96,6 +96,7 @@ import ( b, err := ioutil.ReadFile(path) if err != nil { log.Println(err) + return } text := string(b) @@ -105,6 +106,7 @@ text := string(b) import os text := os.read_file(path)or{ eprintln(err) + return }