muon/tests/lang/fstring.meson
2022-10-25 10:54:31 -04:00

18 lines
353 B
Plaintext

# SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
# SPDX-License-Identifier: GPL-3.0-only
test = 'world'
assert(f'''hello @test@''' == 'hello world')
a = '1'
b = '2'
c = '3'
assert(f'a@a@b@b@c@c@d' == 'a1b2c3d')
n = 10
m = 'bar'
s = f'test @n@ string (@@n@@): @m@'
assert(s == 'test 10 string (@10@): bar', 'Incorrect string formatting')