sciter-sdk / go-sciter

Golang bindings of Sciter: the Embeddable HTML/CSS/script engine for modern UI development
https://sciter.com
2.58k stars 268 forks source link

How to take array of string in golang #179

Closed coolit closed 6 years ago

coolit commented 6 years ago

(v *Value) String() only works for string, what if the data is a array of string?

pravic commented 6 years ago
v := NewValue()
v.Append("123")
v.Append("456")

str_v := v.Index(0)
str := str_v.String()