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")`