27955800e6d228ca4d169776dced683871d3894e
[pspp] / doc / flow-control.texi
1 @c PSPP - a program for statistical analysis.
2 @c Copyright (C) 2017, 2020 Free Software Foundation, Inc.
3 @c Permission is granted to copy, distribute and/or modify this document
4 @c under the terms of the GNU Free Documentation License, Version 1.3
5 @c or any later version published by the Free Software Foundation;
6 @c with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
7 @c A copy of the license is included in the section entitled "GNU
8 @c Free Documentation License".
9 @c
10
11 @node Conditionals and Looping
12 @chapter Conditional and Looping Constructs
13 @cindex conditionals
14 @cindex loops
15 @cindex flow of control
16 @cindex control flow
17
18 This chapter documents @pspp{} commands used for conditional execution,
19 looping, and flow of control.
20
21 @menu
22 * BREAK::                       Exit a loop.
23 * DEFINE::                      Define a macro.
24 * DO IF::                       Conditionally execute a block of code.
25 * DO REPEAT::                   Textually repeat a code block.
26 * LOOP::                        Repeat a block of code.
27 @end menu
28
29 @node BREAK
30 @section BREAK
31 @vindex BREAK
32
33 @display
34 BREAK.
35 @end display
36
37 @cmd{BREAK} terminates execution of the innermost currently executing
38 @cmd{LOOP} construct.
39
40 @cmd{BREAK} is allowed only inside @cmd{LOOP}@dots{}@cmd{END LOOP}.
41 @xref{LOOP}, for more details.
42
43 @node DEFINE
44 @section DEFINE
45 @vindex DEFINE
46 @cindex macro
47
48 @display
49 DEFINE macro_name([argument[/argument]@dots{}])
50 @dots{}body@dots{}
51 !ENDDEFINE.
52
53 Each argument takes the following form:
54   @{!arg_name =,!POSITIONAL@} [!DEFAULT(default)] [!NOEXPAND]
55   @{!TOKENS(count),!CHAREND('token'),!ENCLOSE('start','end'),!CMDEND@}
56
57 The following directives may be used within the body:
58   !OFFEXPAND
59   !ONEXPAND
60
61 The following functions may be used within the body:
62   !BLANKS(count)
63   !CONCAT(arg@dots{})
64   !EVAL(arg)
65   !HEAD(arg)
66   !INDEX(haystack, needle)
67   !LENGTH(arg)
68   !NULL
69   !QUOTE(arg)
70   !SUBSTR(arg, start[, count])
71   !TAIL(arg)
72   !UNQUOTE(arg)
73   !UPCASE(arg)
74
75 The body may also include the following constructs:
76
77 !IF (condition) !THEN true-expansion !ENDIF
78 !IF (condition) !THEN true-expansion !ELSE false-expansion !ENDIF
79 @end display
80
81 The DEFINE command defines a macro that can later be called any number
82 of times within a syntax file.  Each time it is called, the macro's
83 body is @dfn{expanded}, that is, substituted, as if the body had been
84 written instead of the macro call.  A macro may accept arguments,
85 whose values are specified at the point of invocation and expanded in
86 the body where they are referenced.  Macro bodies may also use various
87 directives and functions, which are also expanded when the macro is
88 called.
89
90 Many identifiers associated with macros begin with @samp{!}, a
91 character not normally allowed in identifiers.  These identifiers are
92 reserved only for use with macros, which helps keep them from being
93 confused with other kinds of identifiers.
94
95 @node Macro Basics
96 @subsection Macro Basics
97
98 The simplest macros have no arguments.  The following defines a macro
99 named @code{!vars} that expands to the variable names @code{v1 v2 v3},
100 along with a few example uses.  The macro's name begins with @samp{!},
101 which is optional for macro names.  The @code{()} following the macro
102 name are required:
103
104 @example
105 DEFINE !vars()
106 v1 v2 v3
107 !ENDDEFINE.
108
109 DESCRIPTIVES !vars.
110 FREQUENCIES /VARIABLES=!vars.
111 @end example
112
113 Macros can also expand to entire commands.  For example, the following
114 example performs the same analyses as the last one:
115
116 @example
117 DEFINE !commands()
118 DESCRIPTIVES v1 v2 v3.
119 FREQUENCIES /VARIABLES=v1 v2 v3.
120 !ENDDEFINE.
121
122 !commands
123 @end example
124
125 The body of a macro can call another macro.  For example, we could
126 combine the two preceding examples, with @code{!commands} calling
127 @code{!vars} to obtain the variables to analyze.  The following shows
128 one way that could work:
129
130 @example
131 DEFINE !commands()
132 DESCRIPTIVES !vars.
133 FREQUENCIES /VARIABLES=!vars.
134 !ENDDEFINE.
135
136 DEFINE !vars() v1 v2 v3 !ENDDEFINE.
137 !commands
138
139 * We can redefine the variables macro to analyze different variables:
140 DEFINE !vars() v4 v5 !ENDDEFINE.
141 !commands
142 @end example
143
144 The @code{!commands} macro would be easier to use if it took the
145 variables to analyze as an argument rather than through another macro.
146 The following section shows how to do that.
147
148 @node Macro Arguments
149 @subsection Macro Arguments
150
151 Macros may take any number of arguments, which are specified within
152 the parentheses in the DEFINE command.  Arguments come in two
153 varieties based on how their values are specified when the macro is
154 called:
155
156 @itemize @bullet
157 @item
158 A @dfn{positional} argument has a required value that follows the
159 macro's name.  Use the @code{!POSITIONAL} keyword to declare a
160 positional argument.
161
162 References to a positional argument in a macro body are numbered:
163 @code{!1} is the first positional argument, @code{!2} the second, and
164 so on.  In addition, @code{!*} expands to all of the positional
165 argument values, separated by a space.
166
167 The following example uses a positional argument:
168
169 @example
170 DEFINE !analyze(!POSITIONAL !CMDEND)
171 DESCRIPTIVES !1.
172 FREQUENCIES /VARIABLES=!1.
173 !ENDDEFINE.
174
175 !analyze v1 v2 v3.
176 !analyze v4 v5.
177 @end example
178
179 @item
180 A @dfn{keyword} argument has a name.  In the macro call, its value is
181 specified with the syntax @code{@var{name}=@var{value}}.  Because of
182 the names, keyword argument values may take any order in a macro call.
183 If one is omitted, then a default value is used: either the value
184 specified in @code{!DEFAULT(@var{value})}, or an empty value
185 otherwise.
186
187 In declaration and calls, a keyword argument's name may not begin with
188 @samp{!}, but references to it in the macro body do start with a
189 leading @samp{!}.
190
191 The following example uses a keyword argument that defaults to ALL if
192 the argument is not assigned a value:
193
194 @example
195 DEFINE !analyze_kw(vars=!DEFAULT(ALL) !CMDEND)
196 DESCRIPTIVES !vars.
197 FREQUENCIES /VARIABLES=!vars.
198 !ENDDEFINE.
199
200 !analyze_kw vars=v1 v2 v3.  /* Analyze specified variables.
201 !analyze_kw.                /* Analyze all variables.  
202 @end example
203 @end itemize
204
205 If a macro has both positional and keyword arguments, then the
206 positional arguments must come first in the DEFINE command, and their
207 values also come first in macro calls.
208
209 Each argument declaration specifies the form of its value:
210
211 @table @code
212 @item !TOKENS(@var{count})
213 Exactly @var{count} tokens, e.g.@: @code{!TOKENS(1)} for a single
214 token.  Each identifier, number, quoted string, operator, or
215 punctuator is a token.  @xref{Tokens}, for a complete definition.
216
217 The following variant of @code{!analyze_kw} accepts only a single
218 variable name (or @code{ALL}) as its argument:
219
220 @example
221 DEFINE !analyze_one_var(!POSITIONAL !TOKENS(1))
222 DESCRIPTIVES !1.
223 FREQUENCIES /VARIABLES=!1.
224 !ENDDEFINE.
225
226 !analyze_one_var v1.
227 @end example
228
229 @item !CHAREND('@var{token}')
230 Any number of tokens up to @var{token}, which should be an operator or
231 punctuator token such as @samp{/} or @samp{+}.  The @var{token} does
232 not become part of the value.
233
234 With the following variant of @code{!analyze_kw}, the variables must
235 be following by @samp{/}:
236
237 @example
238 DEFINE !analyze_parens(vars=!CHARNED('/'))
239 DESCRIPTIVES !vars.
240 FREQUENCIES /VARIABLES=!vars.
241 !ENDDEFINE.
242
243 !analyze_parens vars=v1 v2 v3/.
244 @end example
245
246 @item !ENCLOSE('@var{start}','@var{end}')
247 Any number of tokens enclosed between @var{start} and @var{end}, which
248 should each be operator or punctuator tokens.  For example, use
249 @code{!ENCLOSE('(',')')} for a value enclosed within parentheses.
250 (Such a value could never have right parentheses inside it, even
251 paired with left parentheses.)  The start and end tokens are not part
252 of the value.
253
254 With the following variant of @code{!analyze_kw}, the variables must
255 be specified within parentheses:
256
257 @example
258 DEFINE !analyze_parens(vars=!ENCLOSE('(',')'))
259 DESCRIPTIVES !vars.
260 FREQUENCIES /VARIABLES=!vars.
261 !ENDDEFINE.
262
263 !analyze_parens vars=(v1 v2 v3).
264 @end example
265
266 @item !CMDEND
267 Any number of tokens up to the end of the command.  This should be
268 used only for the last positional parameter, since it consumes all of
269 the tokens in the command calling the macro.
270
271 The following variant of @code{!analyze_kw} takes all the variable
272 names up to the end of the command as its argument:
273
274 @example
275 DEFINE !analyze_kw(vars=!CMDEND)
276 DESCRIPTIVES !vars.
277 FREQUENCIES /VARIABLES=!vars.
278 !ENDDEFINE.
279
280 !analyze_kw vars=v1 v2 v3.
281 @end example
282 @end table
283
284 By default, when an argument's value contains a macro call, the call
285 is expanded each time the argument appears in the macro's body.  The
286 @code{!NOEXPAND} keyword in an argument declaration suppresses this
287 expansion.  @xref{Controlling Macro Expansion}, for details.
288
289 @node Controlling Macro Expansion
290 @subsection Controlling Macro Expansion
291
292 Multiple factors control whether macro calls are expanded in different
293 situations.  At the highest level, @code{SET MEXPAND} controls whether
294 macro calls are expanded.  By default, it is enabled.  @xref{SET
295 MEXPAND}, for details.
296
297 A macro body may contain macro calls.  By default, these are expanded.
298 If a macro body contains @code{!OFFEXPAND} or @code{!ONEXPAND}
299 directives, then @code{!OFFEXPAND} disables expansion of macro calls
300 until the following @code{!ONEXPAND}.
301
302 A macro argument's value may contain a macro call.  By default, these
303 macro calls are expanded.  If the argument was declared with the
304 @code{!NOEXPAND} keyword, they are not expanded.
305
306 The argument to a macro function is a special context that does not
307 expand macro calls.  For example, if @code{!vars} is the name of a
308 macro, then @code{!LENGTH(!vars)} expands to 5, as does
309 @code{!LENGTH(!1)} if positional argument 1 has value @code{!vars}.
310 In these cases, use the @code{!EVAL} macro function to expand macros,
311 e.g.@: @code{!LENGTH(!EVAL(!vars))} or @code{!LENGTH(!EVAL(!1))}.
312 @xref{Macro Functions}, for details.
313
314 These rules apply to macro calls.  Uses of macro functions and macro
315 arguments within a macro body are always expanded.
316
317 @node Macro Functions
318 @subsection Macro Functions
319
320 Macro bodies may manipulate syntax using macro functions.  Macro
321 functions accept tokens as arguments and expand to sequences of
322 characters.
323
324 The arguments to macro functions have a restricted form.  They may
325 only be a single token (such as an identifier or a string), a macro
326 argument, or a call to a macro function.  Thus, @code{x}, @code{5.0},
327 @code{x}, @code{!1}, @code{"5 + 6"}, and @code{!CONCAT(x,y)} are valid
328 macro arguments, but @code{x y} and @code{5 + 6} are not.
329
330 Macro functions expand to sequences of characters.  When these
331 character strings are processed further as character strings, e.g.@:
332 with @code{!LENGTH}, any character string is valid.  When they are
333 interpreted as PSPP syntax, e.g.@: when the expansion becomes part of
334 a command, they need to be valid for that purpose.  For example,
335 @code{!UNQUOTE("It's")} will yield an error if the expansion
336 @code{It's} becomes part of a PSPP command, because it contains
337 unbalanced single quotes, but @code{!LENGTH(!UNQUOTE("It's"))} expands
338 to 4.
339
340 The following macro functions are available.  Each function's
341 documentation includes examples in the form @code{@var{call}
342 @expansion{} @var{expansion}}.
343
344 @deffn {Macro Function} !BLANKS (count)
345 Expands to @var{count} unquoted spaces, where @var{count} is a
346 nonnegative integer.  Outside quotes, any positive number of spaces
347 are equivalent; for a quoted string of spaces, use
348 @code{!QUOTE(!BLANKS(@var{count}))}.
349
350 In the examples below, @samp{_} stands in for a space to make the
351 results visible.
352
353 @c Keep these examples in sync with the test for !BLANKS in
354 @c tests/language/control/define.at:
355 @example
356 !BLANKS(0)                  @expansion{} @r{empty}
357 !BLANKS(1)                  @expansion{} _
358 !BLANKS(2)                  @expansion{} __
359 !QUOTE(!BLANKS(5))          @expansion{} '_____'
360 @end example
361 @end deffn
362
363 @deffn {Macro Function} !CONCAT (arg@dots{})
364 Expands to the concatenation of all of the arguments.  Before
365 concatenation, each quoted string argument is unquoted, as if
366 @code{!UNQUOTE} were applied.
367
368 @c Keep these examples in sync with the test for !CONCAT in
369 @c tests/language/control/define.at:
370 @example
371 !CONCAT(x, y)                @expansion{} xy
372 !CONCAT('x', 'y')            @expansion{} xy
373 !CONCAT(12, 34)              @expansion{} 1234
374 !CONCAT(!NULL, 123)          @expansion{} 123
375 @end example
376 @end deffn
377
378 @deffn {Macro Function} !EVAL (arg)
379 Expands macro calls in @var{arg}.  This is especially useful if
380 @var{arg} is the name of a macro or a macro argument that expands to
381 one, because arguments to macro functions are not expanded by default.
382
383 The following examples assume that @code{!vars} is a macro that
384 expands to @code{a b c}:
385
386 @example
387 !vars                        @expansion{} a b c
388 !QUOTE(!vars)                @expansion{} '!vars'
389 !EVAL(!vars)                 @expansion{} a b c
390 !QUOTE(!EVAL(!vars))         @expansion{} 'a b c'
391 @end example
392
393 These examples additionally assume that argument @code{!1} has value
394 @code{!vars}:
395
396 @example
397 !1                           @expansion{} a b c
398 !QUOTE(!1)                   @expansion{} '!vars'
399 !EVAL(!1)                    @expansion{} a b c
400 !QUOTE(!EVAL(!1))            @expansion{} 'a b c'
401 @end example
402 @end deffn
403
404 @deffn {Macro Function} !HEAD (arg)
405 @deffnx {Macro Function} !TAIL (arg)
406 @code{!HEAD} expands to just the first token in an unquoted version of
407 @var{arg}, and @code{!TAIL} to all the tokens after the first.
408
409 @example
410 !HEAD('a b c')               @expansion{} a
411 !HEAD('a')                   @expansion{} a
412 !HEAD(!NULL)                 @expansion{} @r{empty}
413 !HEAD('')                    @expansion{} @r{empty}
414
415 !TAIL('a b c')               @expansion{} b c
416 !TAIL('a')                   @expansion{} @r{empty}
417 !TAIL(!NULL)                 @expansion{} @r{empty}
418 !TAIL('')                    @expansion{} @r{empty}
419 @end example
420 @end deffn
421
422 @deffn {Macro Function} !INDEX (haystack, needle)
423 Looks for @var{needle} in @var{haystack}.  If it is present, expands
424 to the 1-based index of its first occurrence; if not, expands to 0.
425
426 @example
427 !INDEX(banana, an)           @expansion{} 2
428 !INDEX(banana, nan)          @expansion{} 3
429 !INDEX(banana, apple)        @expansion{} 0
430 !INDEX("banana", nan)        @expansion{} 4
431 !INDEX("banana", "nan")      @expansion{} 0
432 !INDEX(!UNQUOTE("banana"), !UNQUOTE("nan")) @expansion{} 3
433 @end example
434 @end deffn
435
436 @deffn {Macro Function} !LENGTH (arg)
437 Expands to a number token representing the number of characters in
438 @var{arg}.
439
440 @example
441 !LENGTH(123)                 @expansion{} 3
442 !LENGTH(123.00)              @expansion{} 6
443 !LENGTH( 123 )               @expansion{} 3
444 !LENGTH("123")               @expansion{} 5
445 !LENGTH(xyzzy)               @expansion{} 5
446 !LENGTH("xyzzy")             @expansion{} 7
447 !LENGTH("xy""zzy")           @expansion{} 9
448 !LENGTH(!UNQUOTE("xyzzy"))   @expansion{} 5
449 !LENGTH(!UNQUOTE("xy""zzy")) @expansion{} 6
450 !LENGTH(!1)                  @expansion{} 5 @r{if @t{!1} is @t{a b c}}
451 !LENGTH(!1)                  @expansion{} 0 @r{if @t{!1} is empty}
452 !LENGTH(!NULL)               @expansion{} 0
453 @end example
454 @end deffn
455
456 @deffn {Macro Function} !NULL
457 Expands to an empty character sequence.
458
459 @example
460 !NULL                        @expansion{} @r{empty}
461 !QUOTE(!NULL)                @expansion{} ''
462 @end example
463 @end deffn
464
465 @deffn {Macro Function} !QUOTE (arg)
466 @deffnx {Macro Function} !UNQUOTE (arg)
467 The @code{!QUOTE} function expands to its argument surrounded by
468 apostrophes, doubling any apostrophes inside the argument to make sure
469 that it is valid PSPP syntax for a string.  If the argument was
470 already a quoted string, @code{!QUOTE} expands to it unchanged.
471
472 Given a quoted string argument, the @code{!UNQUOTED} function expands
473 to the string's contents, with the quotes removed and any doubled
474 quote marks reduced to singletons.  If the argument was not a quoted
475 string, @code{!UNQUOTE} expands to the argument unchanged.
476
477 @example
478 !QUOTE(123.0)                @expansion{} '123.0'
479 !QUOTE( 123 )                @expansion{} '123'
480 !QUOTE('a b c')              @expansion{} 'a b c'
481 !QUOTE("a b c")              @expansion{} "a b c"
482 !QUOTE(!1)                   @expansion{} 'a ''b'' c' @r{if @t{!1} is @t{a 'b' c}}
483
484 !UNQUOTE(123.0)              @expansion{} 123.0
485 !UNQUOTE( 123 )              @expansion{} 123
486 !UNQUOTE('a b c')            @expansion{} a b c
487 !UNQUOTE("a b c")            @expansion{} a b c
488 !UNQUOTE(!1)                 @expansion{} a 'b' c @r{if @t{!1} is @t{a 'b' c}}
489
490 !QUOTE(!UNQUOTE(123.0))      @expansion{} '123.0'
491 !QUOTE(!UNQUOTE( 123 ))      @expansion{} '123'
492 !QUOTE(!UNQUOTE('a b c'))    @expansion{} 'a b c'
493 !QUOTE(!UNQUOTE("a b c"))    @expansion{} 'a b c'
494 !QUOTE(!UNQUOTE(!1))         @expansion{} 'a ''b'' c' @r{if @t{!1} is @t{a 'b' c}}
495 @end example
496 @end deffn
497
498 @deffn {Macro Function} !SUBSTR (arg, start[, count])
499 Expands to a substring of @var{arg} starting from 1-based position
500 @var{start}.  If @var{count} is given, it limits the number of
501 characters in the expansion; if it is omitted, then the expansion
502 extends to the end of @var{arg}.
503
504 @example
505 !SUBSTR(banana, 3)           @expansion{} nana
506 !SUBSTR(banana, 3, 3)        @expansion{} nan
507 !SUBSTR("banana", 3)         @expansion{} @r{error (@code{anana"} is not a valid token)}
508 !SUBSTR(!UNQUOTE("banana"), 3) @expansion{} nana
509 !SUBSTR("banana", 3, 3)      @expansion{} ana
510
511 !SUBSTR(banana, 3, 0)        @expansion{} @r{empty}
512 !SUBSTR(banana, 3, 10)       @expansion{} nana
513 !SUBSTR(banana, 10, 3)       @expansion{} @r{empty}
514 @end example
515 @end deffn
516
517 @deffn {Macro Function} !UPCASE (arg)
518 Expands to an unquoted version of @var{arg} with all letters converted
519 to uppercase.
520
521 @example
522 !UPCASE(freckle)             @expansion{} FRECKLE
523 !UPCASE('freckle')           @expansion{} FRECKLE
524 !UPCASE('a b c')             @expansion{} A B C
525 !UPCASE('A B C')             @expansion{} A B C
526 @end example
527 @end deffn
528
529 @node Macro Conditional Expansion
530 @subsection Macro Conditional Expansion
531
532 The @code{!IF} construct may be used inside a macro body to allow for
533 conditional expansion.  It takes the following forms:
534
535 @example
536 !IF (condition) !THEN true-expansion !IFEND
537 !IF (condition) !THEN true-expansion !ELSE false-expansion !IFEND
538 @end example
539
540 When the @var{condition} evaluates to true, @var{true-expansion} is
541 expanded.  When it evaluates to false, @var{false-expansion} is
542 expanded, if it is present.  The unquoted value @samp{0} is considered
543 false, and all other values are considered true.
544
545 Within @var{condition}, macros, macro arguments, and macro functions
546 are expanded.  After expansion, the condition is evaluated as a macro
547 expression that may use only the following operators, in descending
548 order of operator precedence:
549
550 @example
551 ()
552 !EQ !NE !GT !LT !GE !LE = ~= <> > < >= <=
553 !NOT ~
554 !AND &
555 !OR |
556 @end example
557
558 All of these operators yield a Boolean result, either @samp{0} for
559 false or @samp{1} for true.
560
561 If an operand is a quoted string, then the operator considers the
562 contents of the quoted string; otherwise, it must be a single token.
563 Thus, @code{1 = '1'} is true, and @code{'a b' = a b} is in error
564 because the right-hand operand is two tokens.
565
566 Comparisons in macro expressions are always string comparisons.  This
567 can be surprising when the operands are numbers: e.g.@: @code{1 < 1.0}
568 and @code{10 < 2} both evaluate to @samp{1} (true).
569
570 Macro expression comparisons are case sensitive, so that @code{a = A}
571 evaluates to @samp{0} (false).
572
573 @node Macro Settings
574 @subsection Macro Settings
575
576 Some macro behavior is controlled through the SET command
577 (@pxref{SET}).  This section describes these settings.
578
579 Any SET command that changes these settings within a macro body only
580 takes effect following the macro.  This is because PSPP expands a
581 macro's entire body at once, so that the SET command inside the body
582 only executes afterwards.
583
584 The MEXPAND setting (@pxref{SET MEXPAND}) controls whether macros will
585 be expanded at all.  By default, macro expansion is on.  To avoid
586 expansion of macros called within a macro body, use @code{!OFFEXPAND}
587 and @code{!ONEXPAND} (@pxref{Controlling Macro Expansion}).
588
589 When MPRINT (@pxref{SET MPRINT}) is turned on, PSPP logs an expansion
590 of each macro in the input.  This feature can be useful for debugging
591 macro definitions.
592
593 MNEST (@pxref{SET MNEST}) limits the depth of expansion of macro
594 calls, that is, the nesting level of macro expansion.  The default is
595 50.  This is mainly useful to avoid infinite expansion in the case of
596 a macro that calls itself.
597
598 MITERATE
599
600 PRESERVE...RESTORE
601
602 SET MEXPAND, etc. doesn't work inside macro bodies.
603
604 @node Macro Notes
605 @subsection Extra Notes
606
607 @code{!*} expands to all the positional arguments.
608
609 Macros in comments.
610
611 Macros in titles.
612
613 @node DO IF
614 @section DO IF
615 @vindex DO IF
616
617 @display
618 DO IF condition.
619         @dots{}
620 [ELSE IF condition.
621         @dots{}
622 ]@dots{}
623 [ELSE.
624         @dots{}]
625 END IF.
626 @end display
627
628 @cmd{DO IF} allows one of several sets of transformations to be
629 executed, depending on user-specified conditions.
630
631 If the specified boolean expression evaluates as true, then the block
632 of code following @cmd{DO IF} is executed.  If it evaluates as
633 missing, then
634 none of the code blocks is executed.  If it is false, then
635 the boolean expression on the first @cmd{ELSE IF}, if present, is tested in
636 turn, with the same rules applied.  If all expressions evaluate to
637 false, then the @cmd{ELSE} code block is executed, if it is present.
638
639 When @cmd{DO IF} or @cmd{ELSE IF} is specified following @cmd{TEMPORARY}
640 (@pxref{TEMPORARY}), the @cmd{LAG} function may not be used
641 (@pxref{LAG}).
642
643 @node DO REPEAT
644 @section DO REPEAT
645 @vindex DO REPEAT
646
647 @display
648 DO REPEAT dummy_name=expansion@dots{}.
649         @dots{}
650 END REPEAT [PRINT].
651
652 expansion takes one of the following forms:
653         var_list
654         num_or_range@dots{}
655         'string'@dots{}
656         ALL
657
658 num_or_range takes one of the following forms:
659         number
660         num1 TO num2
661 @end display
662
663 @cmd{DO REPEAT} repeats a block of code, textually substituting
664 different variables, numbers, or strings into the block with each
665 repetition.
666
667 Specify a dummy variable name followed by an equals sign (@samp{=})
668 and the list of replacements.  Replacements can be a list of existing
669 or new variables, numbers, strings, or @code{ALL} to specify all
670 existing variables.  When numbers are specified, runs of increasing
671 integers may be indicated as @code{@var{num1} TO @var{num2}}, so that
672 @samp{1 TO 5} is short for @samp{1 2 3 4 5}.
673
674 Multiple dummy variables can be specified.  Each
675 variable must have the same number of replacements.
676
677 The code within @cmd{DO REPEAT} is repeated as many times as there are
678 replacements for each variable.  The first time, the first value for
679 each dummy variable is substituted; the second time, the second value
680 for each dummy variable is substituted; and so on.
681
682 Dummy variable substitutions work like macros.  They take place
683 anywhere in a line that the dummy variable name occurs.  This includes
684 command and subcommand names, so command and subcommand names that
685 appear in the code block should not be used as dummy variable
686 identifiers.  Dummy variable substitutions do not occur inside quoted
687 strings, comments, unquoted strings (such as the text on the
688 @cmd{TITLE} or @cmd{DOCUMENT} command), or inside @cmd{BEGIN
689 DATA}@dots{}@cmd{END DATA}.
690
691 Substitution occurs only on whole words, so that, for example, a dummy
692 variable PRINT would not be substituted into the word PRINTOUT.
693
694 New variable names used as replacements are not automatically created
695 as variables, but only if used in the code block in a context that
696 would create them, @i{e.g.}@: on a @cmd{NUMERIC} or @cmd{STRING} command
697 or on the left side of a @cmd{COMPUTE} assignment.
698
699 Any command may appear within @subcmd{DO REPEAT}, including nested @subcmd{DO REPEAT}
700 commands.  If @cmd{INCLUDE} or @cmd{INSERT} appears within @subcmd{DO REPEAT},
701 the substitutions do not apply to the included file.
702
703 If @subcmd{PRINT} is specified on @cmd{END REPEAT}, the commands after
704 substitutions are made should be printed to the listing file, prefixed
705 by a plus sign (@samp{+}).  This feature is not yet implemented.
706
707 @node LOOP
708 @section LOOP
709 @vindex LOOP
710
711 @display
712 LOOP [@var{index_var}=@var{start} TO @var{end} [BY @var{incr}]] [IF @var{condition}].
713         @dots{}
714 END LOOP [IF @var{condition}].
715 @end display
716
717 @cmd{LOOP} iterates a group of commands.  A number of
718 termination options are offered.
719
720 Specify index_var to make that variable count from one value to
721 another by a particular increment.  @var{index_var} must be a pre-existing
722 numeric variable.  @var{start}, @var{end}, and @var{incr} are numeric expressions
723 (@pxref{Expressions}.)
724
725 During the first iteration, @var{index_var} is set to the value of @var{start}.
726 During each successive iteration, @var{index_var} is increased by the value of
727 @var{incr}.  If @var{end} > @var{start}, then the loop terminates
728 when @var{index_var} > @var{end};
729 otherwise it terminates when @var{index_var} < @var{end}.  If @var{incr} is not specified
730 then it defaults to +1 or -1 as appropriate.
731
732 If @var{end} > @var{start} and @var{incr} < 0, or if @var{end} < @var{start} and
733  @var{incr} > 0, then the
734 loop is never executed.  @var{index_var} is nevertheless set to the value of
735 start.
736
737 Modifying @var{index_var} within the loop is allowed, but it has no effect on
738 the value of @var{index_var} in the next iteration.
739
740 Specify a boolean expression for the condition on @cmd{LOOP} to
741 cause the loop to be executed only if the condition is true.  If the
742 condition is false or missing before the loop contents are executed the
743 first time, the loop contents are not executed at all.
744
745 If index and condition clauses are both present on @cmd{LOOP}, the
746 index variable is always set before the condition is evaluated.  Thus,
747 a condition that makes use of the index variable will always see the
748 index value to be used in the next execution of the body.
749
750 Specify a boolean expression for the condition on @cmd{END LOOP} to cause
751 the loop to terminate if the condition is true after the enclosed
752 code block is executed.  The condition is evaluated at the end of the
753 loop, not at the beginning, so that the body of a loop with only a
754 condition on @cmd{END LOOP} will always execute at least once.
755
756 If the index clause is not
757 present, then the loop is executed at most @var{max_loops} (@pxref{SET}) times
758 (but possibly fewer, if a condition clause evaluates to false or if
759 @cmd{BREAK} executes).
760 The default value of @var{max_loops} is 40.
761
762 @cmd{BREAK} also terminates @cmd{LOOP} execution (@pxref{BREAK}).
763
764 Loop index variables are by default reset to system-missing from one
765 case to another, not left, unless a scratch variable is used as index.
766 When loops are nested, this is usually undesired behavior, which can
767 be corrected with @cmd{LEAVE} (@pxref{LEAVE}) or by using a scratch
768 variable as the loop index.
769
770 When @cmd{LOOP} or @cmd{END LOOP} is specified following @cmd{TEMPORARY}
771 (@pxref{TEMPORARY}), the @cmd{LAG} function may not be used
772 (@pxref{LAG}).