The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
192 B
11 lines
192 B
6 years ago
|
## Dictionary addition
|
||
|
|
||
|
Dictionaries can now be added, values from the second dictionary overrides values
|
||
|
from the first
|
||
|
|
||
|
```meson
|
||
|
d1 = {'a' : 'b'}
|
||
|
d3 = d1 + {'a' : 'c'}
|
||
|
d3 += {'d' : 'e'}
|
||
|
```
|