Modify golang hello world message

This commit is contained in:
saul_badillo
2024-04-11 18:45:10 -06:00
parent 4d438829f2
commit d054de192a

View File

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