bbash/command/echo/echo.go
Tobias P.L Wennberg 6a94165e54 Bether input
2025-01-12 14:42:23 +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)
}