Junior — Senior
What result will the console output in example №63
livecode
Task condition
Determine what output the console will display after executing the following program.
func main() {
s:="test"
println([s0])
s[0] = "R"
println(s)
}