I would expect this at least for Linux & OSX: ```gleam should.equal(filepath.join("/","one"),"/one") ``` At least those will give that same result: - Go `path/filepath` with `filepath.Join("/", "one")` - Python `os.path.join("/", "one")` - Rust `Path::new("/").join("one")`
I would expect this at least for Linux & OSX:
At least those will give that same result:
path/filepathwithfilepath.Join("/", "one")os.path.join("/", "one")Path::new("/").join("one")