package server import ( "strings" ) func echo(r *request) { r.Print(strings.Join(r.args, " ")) } func init() { newCmd(echo, "echo") }