Files
RedBear-OS/local/recipes/dev/meson/source/test cases/common/237 fstrings/meson.build
T

8 lines
150 B
Meson

project('meson-test')
n = 10
m = 'bar'
s = f'test @n@ string (@@n@@): @m@'
assert(s == 'test 10 string (@10@): bar', 'Incorrect string formatting')