break Command

               break
The break command exits from looping control structures (while, select). For example,
{
  var i = 0
  while i < # arr
    if arr[i] = 7
      set arr[i] = 0
      break
    end
    set arr[i] = 1, i = i + 1
  end
}

Copyright © 1996 FFE Software All Rights Reserved WorldWide