swirl Guide to OmniMark 6   OmniMark home
docs home 
IndexConceptsTasksSyntaxLibrariesOMX VariablesErrors
 
     
action   increment, decrement    

Syntax

  increment integer-name indexer? (by numeric-expression)?


Purpose

increment increases the value of an integer by a specified amount. If no amount is specified, increment increases the value of the integer by 1:

  local integer fred initial {10}
  ;fred = 10
  increment fred
  ;fred = 11
  increment fred by 3
  ;fred = 14

decrement decreases the value of an integer by a specified amount. If no amount is specified, decrement decreases the value of the integer by 1.

  local integer fred initial {10}
  ;fred = 10
  decrement fred
  ;fred = 9
  decrement fred by 3
  ;fred = 6

       
----

Top [ INDEX ] [ CONCEPTS ] [ TASKS ] [ SYNTAX ] [ LIBRARIES ] [ OMX ] [ ERRORS ]

OmniMark 6.5 Documentation Generated: December 23, 2002 at 6:25:23 pm
If you have any comments about this section of the documentation, send email to [email protected]

Copyright © OmniMark Technologies Corporation, 1988-2002.