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

9 lines
254 B
Plaintext

# SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
# SPDX-License-Identifier: GPL-3.0-only
foreach i : [1, 2, 3, 4, 5, 6, 7]
str = 'hello, world \u2713'
msg = '\x1b[3' + i.to_string() + 'm' + str + '\x1b[0m'
message(msg)
endforeach