mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
6 lines
137 B
V
6 lines
137 B
V
fn test_array_to_string_conversion() {
|
|
expected := '["1", "2", "3", "4"] '
|
|
arr := ['1', '2', '3', '4']
|
|
assert '$arr' == expected
|
|
}
|