2024-11-16 10:40:37 +08:00

14 lines
158 B
Go

package main
import "fmt"
const (
AppName = "hello_world"
)
func main() {
appName := "hello_world"
fmt.Println(appName)
fmt.Println("hello project")
}