func main() { app := cli.NewApp() app.Name = "myapp" app.Commands = []cli.Command{ { Name: "foo", Usage: "foo command", Action: func(c *cli.Context) error { arg1 := c.Args().Get(0) arg2 := c.Args().Get(1) fmt.Println(arg1, arg2) return nil }, }, } app.Run(os.Args) }In this example, we create a new CLI app with one command called "foo". When the "foo" command is run, it takes two arguments which are retrieved using the `c.Args().Get()` method. The arguments are then printed to the console. This is a simple example of how to use the Context Args package to pass arguments to commands in a CLI app.