Category:Polyglot:PL/I and PL/M: Difference between revisions

m
(→‎Include Files: Additional definitions)
 
(3 intermediate revisions by the same user not shown)
Line 64:
A suitable file for PL/I definitions could be:
<br>
<langsyntaxhighlight lang=pli>/* pg.inc: PL/I definitions for "polyglot PL/I and PL/M programs" compiled with PL/I */
 
%replace true by '1'b, false by '0'b;
Line 143:
 
 
/* end pg.inc */</langsyntaxhighlight>
 
For PL/M, the following definitions would be used, with the appropiate subset cut-and-pasted into the programLprogram:
<langsyntaxhighlight lang=pli>
DECLARE BINARY LITERALLY 'ADDRESS', CHARACTER LITERALLY 'BYTE';
DECLARE FIXED LITERALLY ' ', BIT LITERALLY 'BYTE';
Line 192:
DECLARE ( A, B )ADDRESS;
RETURN( A MOD B );
END MODF;</lang>
MIN: PROCEDURE( A, B ) ADDRESS;
DECLARE ( A, B ) ADDRESS;
IF A < B THEN RETURN( A ); ELSE RETURN( B );
END MIN;
MAX: PROCEDURE( A, B ) ADDRESS;
DECLARE ( A, B ) ADDRESS;
IF A > B THEN RETURN( A ); ELSE RETURN( B );
END MAX;</syntaxhighlight>
 
Note the lack of comments in the PL/M "include" file - this is because the definitions will be commented out for PL/I compilers by having a "/*" starting in column 81 preceeding the definitions and /* */ follow them.
3,021

edits