bbash/command/echo/echo.go
Tobias P.L Wennberg 15eeadf5d3 initial
2025-01-10 13:29:56 +01:00

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