| Syntax 
   binary-input constant numeric-expression
 
 Purpose
 
 Provides a default byte-ordering code used by the binaryoperator when the monadic form is used. Whenbinary-inputis not included, the default byte-ordering code is 0. binary-inputcan appear anywhere in OmniMark code, any number of times. If more than one is used, each must specify the same constant numeric value. If there is nobinary-inputdeclaration before the first rule or function definition, zero (0) is assumed and any later declarations must also specify 0.
 The code value may be specified as a constant-numeric-expression. This is useful when a constant value can be represented for macro-input. 
 The following code illustrates the use of the binary-inputdeclaration. The test is "true" when the characters saved in the patter variable "sequence-length" describe a binary value greater than 100. Note that thebinary-inputdeclaration indicates that the most significant values come last. If the pattern variable "sequence-length" contains the text "e%0#%0#%0#", the binary evaluation of the value is 101.
   binary-input 3
  ...
  find any => sequence-length
  ...
     when binary sequence-length > 100
 |