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

m
m (→‎Include Files: Fix tags)
 
(One intermediate revision 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 200:
DECLARE ( A, B ) ADDRESS;
IF A > B THEN RETURN( A ); ELSE RETURN( B );
END MAX;</langsyntaxhighlight>
 
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,028

edits