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

examples: fix warnings when doing ./v -W -progress -check-syntax build-examples

This commit is contained in:
Delyan Angelov
2020-10-26 13:14:21 +02:00
parent a7e3092165
commit 9772eb7c96
14 changed files with 203 additions and 157 deletions

View File

@ -2,28 +2,34 @@ 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,'*')
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) {
fn sleeping_line(x int, y int, size int, ch string) {
mut i := 0
for i < size {
term.set_cursor_position(x: x+i, y: y)
term.set_cursor_position({
x: x + i
y: y
})
print(term.bold(term.yellow(ch)))
i++
}
}
fn standing_line(x,y,size int, ch string) {
fn standing_line(x int, y int, size int, ch string) {
mut i := 0
for i < size {
term.set_cursor_position(x: x, y: y+i)
term.set_cursor_position({
x: x
y: y + i
})
print(term.bold(term.yellow(ch)))
i++
}