Modify golang hello world message

This commit is contained in:
saul_badillo
2024-04-11 19:34:12 -06:00
parent 15123c03c5
commit c0690c12c3

View File

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