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