Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
if_keep.vv
11
lines
·
10
sloc
·
195 bytes
·
7f7f9dca6b09e5e433c758681dd3322610bf6f83
Raw
1
fn void_type_array_cond() {
2
if fg == [] {
3
stack.ctx.reset_color()
4
}
5
}
6
7
fn multi_dimensional_array_cond() {
8
if t.data == [][]string{} {
9
return error('Table.data should not be empty.')
10
}
11
}
12