Created
May 15, 2017 16:10
-
-
Save jmahmood/f8c61f7980f7eb0006a74078544fff91 to your computer and use it in GitHub Desktop.
The MANTWON elite hacking program
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 characters
package main | |
import ( | |
"fmt" | |
"os" | |
"github.com/urfave/cli" | |
) | |
func main() { | |
app := cli.NewApp() | |
app.Name = "greet" | |
app.Usage = "fight the loneliness!" | |
app.Action = func(c *cli.Context) error { | |
fmt.Println("Hello friend!") | |
return nil | |
} | |
app.Run(os.Args) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment