ti basic access list
TI - BASIC
//Syntax for creating a custom list
//ʟLISTNAME
//Declaring a list
:{1,2,3,4,5}→ʟLISTNAME
//Find lenght of a list
:Disp dim(ʟLISTNAME)
//Outputs:
//5
//Access elements
:Disp ʟLISTNAME(1)
//Should Output the first element
//Output:
//1