diff options
Diffstat (limited to 'docs/markdown/snippets/dict_builtin.md')
-rw-r--r-- | docs/markdown/snippets/dict_builtin.md | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/docs/markdown/snippets/dict_builtin.md b/docs/markdown/snippets/dict_builtin.md deleted file mode 100644 index 1bd24cef9..000000000 --- a/docs/markdown/snippets/dict_builtin.md +++ /dev/null @@ -1,19 +0,0 @@ -## New built-in object dictionary - -Meson dictionaries use a syntax similar to python's dictionaries, -but have a narrower scope: they are immutable, keys can only -be string literals, and initializing a dictionary with duplicate -keys causes a fatal error. - -Example usage: - -```meson -dict = {'foo': 42, 'bar': 'baz'} - -foo = dict.get('foo') -foobar = dict.get('foobar', 'fallback-value') - -foreach key, value : dict - Do something with key and value -endforeach -``` |