Tobias P.L Wennberg 84f321389a Bether input
2025-01-12 13:08:49 +01:00

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)
}