This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
nice-repo-share
/
the-way-to-go_ZH_CN
miroir de
https://github.com/Unknwon/the-way-to-go_ZH_CN.git
Suivre
2
Voter
0
Fork
0
Fichiers
Tickets
0
Wiki
Parcourir la source
Update 12.5.md (
#777
)
修复示例打开文件未关闭错误
sbkebcmj
il y a 5 ans
Parent
b4dbc14dd5
commit
f8479c8188
1 fichiers modifiés
avec
1 ajouts
et
0 suppressions
Vue séparée
Afficher les stats Diff
1
0
eBook/12.5.md
+ 1
- 0
eBook/12.5.md
Voir le fichier
@@ -40,6 +40,7 @@ func main() {
continue
}
cat(bufio.NewReader(f))
+ f.Close()
}
}
```