bb/tool/path/main.go

13 lines
132 B
Go
Raw Permalink Normal View History

2023-01-27 19:23:11 +03:00
package path
import (
"path/filepath"
"fmt"
)
func Run(args []string) {
path := filepath.Join(args[1:]...)
fmt.Print(path)
}