Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
term
/
ui
/
1_term_and_ui_compilation_test.v
7
lines
·
6
sloc
·
154 bytes
·
04cc037955e27f78a1b00d5b0e8e3e7e2a4b5b2b
Raw
1
import
term.ui
2
import
term
3
4
fn
test_term_and_term_ui_can_compile_together() {
5
println(
'${term.bold('
hello
')} world ${ui.color_table[0]}'
)
6
assert
true
7
}
8