We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75e52f1 commit a55b4edCopy full SHA for a55b4ed
main.go
@@ -1,17 +1,17 @@
1
+package main
2
+
3
/*
4
* @Description: "the entry point of our executable program."
5
* @Date: 2019-09-22 15:05:54
6
* @LastEditors: wangtongli
7
* @Email: [email protected]
- * @LastEditTime: 2019-09-22 15:35:25
8
+ * @LastEditTime: 2019-09-22 16:17:14
9
*/
10
-package main
-
11
import (
12
"fmt"
13
)
14
15
func main() {
16
- fmt.Println("hello wrold!")
+ fmt.Println(mySqrt(9))
17
}
mysqrt.go
@@ -0,0 +1,13 @@
+/*
+ * @Description: "sqrt function"
+ * @Date: 2019-09-22 16:08:09
+ * @LastEditors: wangtongli
+ * @Email: [email protected]
+ * @LastEditTime: 2019-09-22 16:21:02
+ */
+func mySqrt(x int) int {
+ return 0
+}
0 commit comments