// example how to build a list by successive appending elements or directly B:=[]; for k in [1..100] do B:=Append(B,k*k); end for; A:=[k*k : k in [0..100] ]; print B[12]; print A[13];