parent
beb1f00f3b
commit
23ed0e1857
5 changed files with 43 additions and 5 deletions
@ -0,0 +1,15 @@ |
||||
## Joining paths with / |
||||
|
||||
Joining two paths has traditionally been done with the `join_paths` function. |
||||
|
||||
```meson |
||||
joined = join_paths('foo', 'bar') |
||||
``` |
||||
|
||||
Now you can use the simpler notation using the `/` operator. |
||||
|
||||
```meson |
||||
joined = 'foo' / 'bar' |
||||
``` |
||||
|
||||
This only works for strings. |
Loading…
Reference in new issue