summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/support-multiline-fstring.md
AgeCommit message (Collapse)Author
2022-07-03Finalize the release.Jussi Pakkanen
2022-05-01Add support for multiline f-stringsPeter Lesslie
+ 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.