Site hosted by Angelfire.com: Build your free website today!
NAME
  SWAP Statement

SYNOPSIS
  SWAP variable1, variable2
      o variable1 and variable2    Two variables of the same data type.

DESCRIPTION
  Exchanges the values of two variables.

  Example:
      a% = 1: b% = 2
      PRINT "Before: "; a%, b%
      SWAP a%, b%
      PRINT "After: "; a%, b%

SEE ALSO
  none