This website works better with JavaScript
Página Principal
Explorar
Ajuda
Registe-se
Iniciar Sessão
toor
/
learn
Vigiar
1
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Árvore:
446bf0e7bc
Ramos
Etiquetas
main
learn
/
golang-learn
/
38-table_driven_tests
/
add.go
add.go
89 B
Histórico
Em bruto
1
2
3
4
5
6
package add
// Add 被测函数:两数相加
func Add(a, b int) int {
return a + b
}