Remove work-in-progress command file

This commit is contained in:
Herman Schaaf
2016-08-04 23:51:40 +08:00
parent a2b2dbdbc7
commit 9d9192e295

View File

@@ -1,20 +0,0 @@
package main
import (
"fmt"
"os"
)
func printUsage() {
fmt.Println("\ngoreportcard command line tool")
fmt.Println("\nUsage:\n\n goreportcard [package names...]")
}
func main() {
if len(os.Args) == 1 {
printUsage()
}
names := := os.Args[1:]
}