This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
nice-repo-share
/
the-way-to-go_ZH_CN
mirror de
https://github.com/Unknwon/the-way-to-go_ZH_CN.git
Vigiar
2
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Wiki
Ver Fonte
Update 12.5.md (
#777
)
修复示例打开文件未关闭错误
sbkebcmj
há 5 anos atrás
pai
b4dbc14dd5
commit
f8479c8188
1 ficheiros alterados
com
1 adições
e
0 exclusões
Visão Dividida
Mostrar Estatísticas Diff
1
0
eBook/12.5.md
+ 1
- 0
eBook/12.5.md
Ver Ficheiro
@@ -40,6 +40,7 @@ func main() {
continue
}
cat(bufio.NewReader(f))
+ f.Close()
}
}
```