Hi. I have a general question about Emacs functionality.
Is there a convenient way to produce an array like,
tmp_arry = ["Toyota", "Honda", "Nissan", "VolksW", "Ford"]
?
I am looking for an easy way to achieve this like cua-mode for
a[0] = "this1"
a[1] = "this2"
a[2] = "this3"
...
soichi