1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/term/ui/2_term_and_ui_compilation_test.v

8 lines
154 B
V
Raw Normal View History

import term
import term.ui
fn test_term_and_term_ui_can_compile_together() {
println('${term.bold('hello')} world ${ui.color_table[0]}')
assert true
}