Files
2024-12-29 16:11:33 +08:00

9 lines
128 B
Go
Executable File

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