| Syntax 
   using output as stream-name indexer? open-modifiers?
     (&stream-name indexer? open-modifiers?)*
     action
 Purpose
 
 The using output asprefix causes the named streams to be the new current output set during the action contained in the prefix. (Note that the named streams must be currently open.) Only the following modifiers are permitted with using output as: a string expression containing the element content format modifiers
the binaryopen modifier
 Action is the action that falls under the control of the usingprefix. If the action contains a%coperator, all the element content indicated by the%cis written to the named streams unless aput,setor anotherusing output asprefix is encountered. using output asis more useful when a number of actions all write to the same streams.
 The following variations are permitted:
 The keyword andcan be used in place of "&".The list of stream names can be placed in parentheses to improve readability. 
 |