Usage:
list[x]
This is used to access the element of lists with a given key or index.
= list("foo")
world.log << my_list[1] // "foo"
= list("key" = "bar")
world.log << my_other_list["key"] // "bar"
list[x]
This is used to access the element of lists with a given key or index.
= list("foo")
world.log << my_list[1] // "foo"
= list("key" = "bar")
world.log << my_other_list["key"] // "bar"