var s = "String"
world << s[3] // outputs "r"
However you're currently not able to do "[number]"[3] to grab the position of the character/value.
Another solution would be to allow for 479[2] which would output 7
ID:2736881
![]() Nov 16 2021, 3:05 pm
|
|
Currently you can access a string via
var s = "String" However you're currently not able to do "[number]"[3] to grab the position of the character/value. Another solution would be to allow for 479[2] which would output 7 |