handlePrint prints a message to stdout.
(r *Request)
| 122 | |
| 123 | // handlePrint prints a message to stdout. |
| 124 | func handlePrint(r *Request) (interface{}, error) { |
| 125 | return fmt.Print(r.Args.One().MustString()) |
| 126 | } |
| 127 | |
| 128 | // handlePrompt asks user a single line input. |
| 129 | func handlePrompt(r *Request) (interface{}, error) { |
nothing calls this directly
no test coverage detected