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

13 lines
155 B
Go

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