I like using shebangs to run my Perl scripts directly:
#!/usr/bin/env perl
What\'s the shebang for Go programs?
//usr/bin/go run $0 $@ ; exit
example:
//usr/bin/go run $0 $@ ; exit package main import "fmt" func main() { fmt.Println("Hello World!") }
go treat // as a single line comment and shell ignore extra /
//
/