This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
nice-repo-share
/
the-way-to-go_ZH_CN
mirror da
https://github.com/Unknwon/the-way-to-go_ZH_CN.git
Segui
2
Vota
0
Forka
0
File
Problemi
0
Wiki
Sfoglia il codice sorgente
Update 12.5.md (
#777
)
修复示例打开文件未关闭错误
sbkebcmj
5 anni fa
parent
b4dbc14dd5
commit
f8479c8188
1 ha cambiato i file
con
1 aggiunte
e
0 eliminazioni
Visualizzazione separata
Mostra Diff Stats
1
0
eBook/12.5.md
+ 1
- 0
eBook/12.5.md
Vedi File
@@ -40,6 +40,7 @@ func main() {
continue
}
cat(bufio.NewReader(f))
+ f.Close()
}
}
```