summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/add_dictionary_variable_key.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-01-07 19:32:34 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2020-01-07 22:12:25 +0200
commit8d576eba9190f311e845f08ce822972b34c4e973 (patch)
treed7add41a3b2d463f89be86577f3ba8503663f521 /docs/markdown/snippets/add_dictionary_variable_key.md
parenta1d2444e4aac7df1a7f5d36246f64ea0564d38a4 (diff)
downloadmeson-8d576eba9190f311e845f08ce822972b34c4e973.tar.gz
Prepare new release.
Diffstat (limited to 'docs/markdown/snippets/add_dictionary_variable_key.md')
-rw-r--r--docs/markdown/snippets/add_dictionary_variable_key.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/markdown/snippets/add_dictionary_variable_key.md b/docs/markdown/snippets/add_dictionary_variable_key.md
deleted file mode 100644
index 72294aeb9..000000000
--- a/docs/markdown/snippets/add_dictionary_variable_key.md
+++ /dev/null
@@ -1,9 +0,0 @@
-## Dictionary entry using string variable as key
-
-Keys can now be any expression evaluating to a string value, not limited
-to string literals any more.
-```meson
-d = {'a' + 'b' : 42}
-k = 'cd'
-d += {k : 43}
-```