test fixes

This commit is contained in:
Dhanji R. Prasanna
2025-11-05 14:11:59 +11:00
parent fa38439a06
commit 26e26cf367
6 changed files with 124 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
greet("Go")
}
func greet(name string) {
fmt.Printf("Hello, %s!\n", name)
}