mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7 lines
80 B
V
7 lines
80 B
V
import x.json2
|
|
|
|
fn main() {
|
|
x := '[[],[],[]]'
|
|
println(json2.raw_decode(x)!)
|
|
}
|