-
-
Save matyunin/00f9ad8c6e0783719d25d2e5d44fa47f to your computer and use it in GitHub Desktop.
Revisions
-
msoap revised this gist
Mar 13, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
Empty file. -
msoap revised this gist
Mar 13, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ //usr/bin/env go run $0 "$@"; exit package main import ( -
msoap created this gist
Mar 13, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ //usr/bin/env go run $0 $@; exit package main import ( "fmt" "os" ) func main() { fmt.Println("Hello world!") cwd, _ := os.Getwd() fmt.Println("cwd:", cwd) fmt.Println("args:", os.Args[1:]) }