aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/support-multiline-fstring.md
AgeCommit message (Collapse)AuthorFilesLines
2022-07-03Finalize the release.0.63.0Jussi Pakkanen1-22/+0
2022-05-01Add support for multiline f-stringsPeter Lesslie1-0/+22
+ Extend the parser to recognize the multiline f-strings, which the documentation already implies will work. The syntax is like: ``` x = 'hello' y = 'world' msg = f'''This is a multiline string. Sending a message: '@x@ @y@' ''' ``` which produces: ``` This is a multiline string. Sending a message: 'hello world' ``` + Added some f-string tests cases to "62 string arithmetic" to exercise the new behavior.