Merge pull request 'feat: initialize a go module' (#1) from feat/initialize-go into main

Reviewed-on: #1
This commit is contained in:
2025-09-14 07:16:28 +00:00
2 changed files with 10 additions and 0 deletions

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module hypercode.run/alex/ask
go 1.25.0

7
main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}