RS/2 RedTitan Script 2
RS/2 uses an intrinsic HANDLE type to access complex objects. A handle is declared by calling a create function. e.g. to process a data file
fx:=openfile('text.txt'); repeat s:=readline(fx); // read from the file writeln(s); // write to the console until eof(fx);
5