add test_case

This commit is contained in:
2020-02-09 23:59:45 +08:00
parent d60039deac
commit 8ead1d6020
2 changed files with 29 additions and 0 deletions

14
test_case/some.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"fmt"
)
func Add(a, b int32) int32 {
return a + b
}
func main() {
fmt.Println("test: ", Add(1, 2))
}