Artifact 5252dfb626aadee27f43ccf933f9460fe134f4794d2caec21233ddc833915e42:


% MINI-OBLIST.RED

on syslisp;
% ---- Small MAPOBL and printers

Procedure MapObl(Fn);
 For i:=0:NextSymbol-1 do IdApply1(MkItem(ID,I),Fn);

Procedure PrintFexprs;
 MapObl 'Print1Fexpr;

Procedure Print1Fexpr(x);
 If FexprP x then Print x;

Procedure PrintFunctions;
 MapObl 'Print1Function;

Procedure Print1Function(x);
 If Not FUnboundP x then Print x;

off syslisp;

End;


REDUCE Historical
REDUCE Sourceforge Project | Historical SVN Repository | GitHub Mirror | SourceHut Mirror | NotABug Mirror | Chisel Mirror | Chisel RSS ]