feat: init commit

This commit is contained in:
2024-12-29 16:11:33 +08:00
parent f5a522d0f0
commit c0ea1910db
3 changed files with 17 additions and 1 deletions

3
helloworld-go/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module helloworld
go 1.23.0

8
helloworld-go/main.go Executable file
View File

@@ -0,0 +1,8 @@
/// 2>/dev/null ; gorun "$0" "$@" ; exit $?
// OR: #!/usr/bin/env gorun
package main
func main() {
println("Hello world.")
}