› Форумы › Другие компиляторы PL/I › Iron Spring › Ответ в теме: Iron Spring
03.07.2019 в 16:49
#805
Аналогично, для проверки FREE
testfree: proc options (main);
/* Iron Spring does not accept free with more than one variable */
dcl (a(n,n), b(n)) float ctl, n fixed;
n=2;
allocate a, b;
free a, b;
end testfree;