Base program skeleton

This commit is contained in:
2016-01-14 12:48:47 +01:00
parent c34419e61e
commit 01642af48e
3 changed files with 21 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"fmt"
"os"
)
func main() {
fmt.Fprintf(os.Stderr, "Not Yet Implemented")
os.Exit(1)
}