Question: How to refer to the first element of a list as 0th?

I want to refer to the first element in a list such as x:=[1,2,3] as x[0] not x[1].

How to do it?

Please Wait...