package echo import ( "bbash/input_parser" "fmt" "bbash/environment" ) func Echo(in input_parser.Input, _ *environment.Env) { fmt.Print(in.Args) }