Modify golang hello world message

This commit is contained in:
saul_badillo
2024-04-11 18:51:49 -06:00
parent 4d438829f2
commit dabd467703

View File

@@ -3,5 +3,5 @@ package main
import "fmt" import "fmt"
func main(){ func main(){
fmt.Println("Hello world") fmt.Println("Not Hello world")
} }