added folder structs

This commit is contained in:
2021-12-10 14:32:58 +01:00
parent 0cc373245f
commit 9e32764fe5

12
cmd/main.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Please enter your name.")
var name string
fmt.Scanln(&name)
fmt.Printf("Hi, %s! I'm Go!", name)
}