13 lines
132 B
Go
13 lines
132 B
Go
|
package path
|
||
|
|
||
|
import (
|
||
|
"path/filepath"
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func Run(args []string) {
|
||
|
path := filepath.Join(args[1:]...)
|
||
|
fmt.Print(path)
|
||
|
}
|
||
|
|