export func main() { let items = [["Hello"], ["Goodbye"]] println(items[0][0]) items[0][0] = "Goodbye" println(items[0][0]) }