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