This commit is contained in:
2016-04-09 17:40:26 +02:00
parent 8bba66dfa7
commit 1504a585b6
7 changed files with 14 additions and 141 deletions

14
goshebang/test.go Executable file
View File

@@ -0,0 +1,14 @@
//usr/bin/env go run "$0" "$@" ; exit "$?"
package main
import "time"
import "fmt"
import "os"
func main() {
fmt.Println("Hello World! It's all a bit tiring.")
time.Sleep(5 * time.Second)
fmt.Println("Goodbye World!")
os.Exit(1)
}