v/vlib/compiler/tests/array_to_string_test.v
2020-01-20 23:04:26 +01:00

5 lines
137 B
V

fn test_array_to_string_conversion() {
expected := '["1", "2", "3", "4"] '
arr := ['1', '2', '3', '4']
assert '$arr' == expected
}