bbash/command/whereareyou/whereareyou.go
2025-01-14 17:06:25 +01:00

12 lines
206 B
Go

package whereareyou
import (
"bbash/environment"
"bbash/input_parser"
"fmt"
)
func Whereareyou(in input_parser.Input, env *environment.Env) {
fmt.Print("You're in the thick of it everybody knows!")
}