package pwd import ( "bbash/input_parser" "fmt" "bbash/environment" ) func Pwd(in input_parser.Input, env *environment.Env) { fmt.Print(env.Path) }