diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-05-02 12:42:42 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-05-02 12:42:42 +0300 |
commit | 753954be868ed78b3e339e8811fd1d29eb2af237 (patch) | |
tree | 46ede995e85aa7523f052b653b1aea663adf08d5 /docs/markdown/snippets/fstrings.md | |
parent | b2687e86c87a1dd2e254aeaf3355b3e98b82b730 (diff) | |
download | meson-753954be868ed78b3e339e8811fd1d29eb2af237.zip meson-753954be868ed78b3e339e8811fd1d29eb2af237.tar.gz meson-753954be868ed78b3e339e8811fd1d29eb2af237.tar.bz2 |
Release 0.58.0.0.58.0
Diffstat (limited to 'docs/markdown/snippets/fstrings.md')
-rw-r--r-- | docs/markdown/snippets/fstrings.md | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/markdown/snippets/fstrings.md b/docs/markdown/snippets/fstrings.md deleted file mode 100644 index 45a238c..0000000 --- a/docs/markdown/snippets/fstrings.md +++ /dev/null @@ -1,7 +0,0 @@ -## Introducing format strings to the Meson language - -In addition to the conventional `'A string @0@ to be formatted @1@'.format(n, m)` -method of formatting strings in the Meson language, there's now the additional -`f'A string @n@ to be formatted @m@'` notation that provides a non-positional -and clearer alternative. Meson's format strings are currently restricted to -identity-expressions, meaning `f'format @'m' + 'e'@'` will not parse. |