init
This commit is contained in:
commit
8f4f858d86
30 changed files with 9765 additions and 0 deletions
12
hello.go
Normal file
12
hello.go
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func greet(name string) string {
|
||||
return "Hello, " + name
|
||||
}
|
||||
|
||||
func main() {
|
||||
message := greet("Go backend")
|
||||
fmt.Println(message)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue