1 2 3 4 5 6 7 8 9 10 11 12 13
package server import ( "strings" ) func echo(r *request) { r.Print(strings.Join(r.args, " ")) } func init() { newCmd(echo, "echo") }