Skip to content

Instantly share code, notes, and snippets.

@jmahmood
Created May 15, 2017 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmahmood/f8c61f7980f7eb0006a74078544fff91 to your computer and use it in GitHub Desktop.
Save jmahmood/f8c61f7980f7eb0006a74078544fff91 to your computer and use it in GitHub Desktop.
The MANTWON elite hacking program
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