Skip to content

Instantly share code, notes, and snippets.

@hyuki
Created April 16, 2018 10:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hyuki/db2b157c69be96a3b1fdd119c78f4776 to your computer and use it in GitHub Desktop.
Save hyuki/db2b157c69be96a3b1fdd119c78f4776 to your computer and use it in GitHub Desktop.
Goでshebang(的な動作)
//usr/bin/env go run $0 $@ ; exit
package main
import "fmt"
func main() {
fmt.Println("Hello")
}
// https://qiita.com/ando-masaki/items/323c6b08e07ec4538c3d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment