mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
Restructured termcolor to term module
This commit is contained in:
parent
6ddc57c190
commit
235a7ecd7f
4 changed files with 148 additions and 8 deletions
30
examples/terminal_control.v
Normal file
30
examples/terminal_control.v
Normal file
|
@ -0,0 +1,30 @@
|
|||
import term
|
||||
|
||||
fn main() {
|
||||
term.erase_clear()
|
||||
sleeping_line(5,5,5,'*')
|
||||
standing_line(5,5,5,'*')
|
||||
sleeping_line(5,10,5,'*')
|
||||
standing_line(9,5,5,'*')
|
||||
term.cursor_down(5)
|
||||
print('\n')
|
||||
println(term.bold(term.red('It Worked!')))
|
||||
}
|
||||
|
||||
fn sleeping_line(x,y,size int, ch string) {
|
||||
mut i := 0
|
||||
for i < size {
|
||||
term.set_cursor_position(x+i,y)
|
||||
print(term.bold(term.yellow(ch)))
|
||||
i++
|
||||
}
|
||||
}
|
||||
|
||||
fn standing_line(x,y,size int, ch string) {
|
||||
mut i := 0
|
||||
for i < size {
|
||||
term.set_cursor_position(x,y+i)
|
||||
print(term.bold(term.yellow(ch)))
|
||||
i++
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue