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

17 lines
266 B
V
Raw Normal View History

2019-08-11 00:02:48 +03:00
struct Foo {
2019-08-31 16:38:13 +03:00
a int
}
2019-08-11 00:02:48 +03:00
fn test_array_str() {
f := Foo{34}
2019-08-31 16:38:13 +03:00
println(f)
//s := f.str()
//println(s)
n := [i64(1), 2, 3]
assert n.str() == '[1, 2, 3]'
println(n) // make sure the array is printable
n2 := [4,5,6]
//assert n2.str() == '[4, 5, 6]'
println(n2)
}