12 lines
157 B
Go
12 lines
157 B
Go
package echo
|
|
|
|
import (
|
|
"bbash/environment"
|
|
"bbash/input_parser"
|
|
"fmt"
|
|
)
|
|
|
|
func Echo(in input_parser.Input, _ *environment.Env) {
|
|
fmt.Print(in.Args_raw)
|
|
}
|