RS/2 RedTitan Script 2
There are no VAR or CONST declarations. Identifiers are "instantiated" by the first use and given a type - they may not be re-declared.
Numbers are held internally in floating point format. Strings are WideStrings.
A new type called a LIST is used to help with processing CSV and TABLES. A LIST is an array of strings or numbers.
LX:=['alpha',"beta",gamma,1.2345
%And it's got a very 'strange' syntax
];
for i:=0 to pred(length(LX)) do writeln(list_strings(lx,i));