diff options
Diffstat (limited to 'docs/markdown/snippets/support-multiline-fstring.md')
| -rw-r--r-- | docs/markdown/snippets/support-multiline-fstring.md | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/markdown/snippets/support-multiline-fstring.md b/docs/markdown/snippets/support-multiline-fstring.md deleted file mode 100644 index 296a04e34..000000000 --- a/docs/markdown/snippets/support-multiline-fstring.md +++ /dev/null @@ -1,22 +0,0 @@ -## Added support for multiline fstrings - -Added support for multiline f-strings which use the same syntax as f-strings -for string substition. - -```meson -x = 'hello' -y = 'world' - -msg = f'''Sending a message... -"@x@ @y@" -''' -``` - -which produces: - -``` -Sending a message.... - -"hello world" - -``` |
