HP Pascal/iX Reference Manual (31502-90022)

12- 23
$COPYRIGHT_DATE
date_string
$
Parameter
date_string
Specifies the date string to appear in the copyright
notice, as follows:
(C) Copyright
date_string
by
string_literal
.
All rights reserved. No part of this program may be
photocopied, reproduced, or transmitted without prior
written consent of
string_literal
.
(The COPYRIGHT option sets
string_literal
.)
Default Current year.
Location At front.
The COPYRIGHT_DATE compiler option has no effect if the program does not
contain the COPYRIGHT compiler option, which puts the copyright notice
into the relocatable object and program files.
Example
$COPYRIGHT 'Blaise Pascal'$
$COPYRIGHT_DATE '1682,1683,1684,1685,1686'$
PROGRAM show_copyright;
BEGIN
END.
The copyright notice for the preceding program is:
(C) Copyright 1682,1683,1684,1685,1686 by Blaise Pascal.
All rights reserved. No part of this program may be
photocopied, reproduced, or transmitted without prior
written consent of Blaise Pascal.
ELSE
ELSE is an HP Pascal Option.
The ELSE compiler option specifies the code to be compiled when the
Boolean expression in the IF compiler option has the value FALSE. See the
IF option for more information.
Syntax
$ELSE$
Default Not applicable.
Location Anywhere.
Example 1
$SET 'group1=FALSE'$
.
.
.
$IF 'group1'$
[
source_line
]
[ . ]
[ . ]
[ . ]
$ELSE$
[
source_line
]