## 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" ```