The Meson Build System http://mesonbuild.com/
 
 
 
 
 
 

289 B

Added support for multiline fstrings

Added support for multiline f-strings which use the same syntax as f-strings for string substition.

x = 'hello'
y = 'world'

msg = f'''Sending a message...
"@x@ @y@"
'''

which produces:

Sending a message....

"hello world"