Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 7 219
Chapter 2 Program Instructions
REM (')
Field of Application
Statement for adding headlines and explanations to the program
without including them in the execution.
Syntax REM|'<remark>
<remark> is a text inserted in the program for explanatory purpose.
Max. 32,767 characters per line.
Remarks
A REM statement may either be entered on a program line of its own or be
inserted at the end of a line containing another instruction. In the latter case,
REM must be preceded by a colon (“:REM”).
A shorthand form for REM is an apostrophe (ASCII 39 dec.).
It is possible to branch to a line of REM statement. Execution will then
continue at the fi rst executable line after the REM line.
REM statements slow down execution and transfer of data and also
take up valuable memory space. Therefore, use REM statements with
judgement.
Example
A program containing REM statements:
10 'Label format No. 1
20 FONT "Swiss 721 BT"
30 PRPOS 30,100
40 DIR 1 :REM Print across web
50 ALIGN 4 :REM Aligned left/baseline
60 MAG 2,2 :'Double height and width
70 PRTXT "HELLO"
80 PRINTFEED
RUN