add a new revision

This commit is contained in:
David 2024-08-31 19:54:00 -04:00
parent ce33489afe
commit 67de8af764

View File

@ -5,3 +5,7 @@ import "fmt"
func Hello(who string) string { func Hello(who string) string {
return fmt.Sprintf("Hello %s", who) return fmt.Sprintf("Hello %s", who)
} }
func Hello2(who string) string {
return fmt.Sprintf("Hello to %s", who)
}