RosettaCodeData/Task/History-variables/PL-I/history-variables.pli
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
206 B
Text

declare t float controlled;
do i = 1 to 5; /* a loop to read in and save five values. */
allocate t; get (t);
end;
do while (allocation(t) > 0); /* a loop to retrieve the values. */
put (t); free t;
end;