mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 19:34:50 +00:00
18 lines
353 B
Plaintext
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')
|