bbash/command/echo/echo.go
2025-01-11 14:59:27 +01:00

13 lines
194 B
Go

package echo
import (
"bbash/environment"
"bbash/input_parser"
"fmt"
)
func Echo(in input_parser.Input, _ *environment.Env) {
fmt.Print(in.Args)
// fungerar inte om råttan åt din kod
}