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"