13 lines
194 B
Go
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
|
|
}
|