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