mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
4 lines
75 B
Text
4 lines
75 B
Text
arr := ['1', '2', '3', '4']
|
|
println(arr)
|
|
===output===
|
|
["1", "2", "3", "4"]
|