14 lines
158 B
Go
Raw Normal View History

2024-11-16 10:31:47 +08:00
package main
import "fmt"
2024-11-16 10:40:37 +08:00
const (
AppName = "hello_world"
)
2024-11-16 10:31:47 +08:00
func main() {
2024-11-16 10:40:37 +08:00
appName := "hello_world"
fmt.Println(appName)
2024-11-16 10:31:47 +08:00
fmt.Println("hello project")
}