Garden 🌻

Path::join

Append component to this path.

Source Codepublic method join(this: Path, component: String): Path {
  let p = if this.p.ends_with("/") {
    this.p ^ component
  } else {
    (this.p ^ "/") ^ component
  }

  Path{ p: p }
}