14 lines
158 B
Go
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")
|
|
}
|