mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 03:14:36 +00:00
9 lines
254 B
Plaintext
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
|