


            Lab(V1.3 in C:) (2.x, 3.x in C:)



     NAME
            Lab - Define a label for Skip.

     SYNOPSIS
            Lab label_name

     DESCRIPTION
            Lab is used to define a label for use with skip.  Lab 
        by itself defines a null label. Note that if an EndSkip 
        is encountered by Skip before the Label Skip is searching 
        for is found, the search will be aborted at that point.

         
     EXAMPLE

            1. In this example, only "But this will" will display 
        on the CLI. Just type this script out and run it to see 
        exactly how it works:

          Skip DODAH
          Echo "This will not display"
          Lab DODAH
          Echo "But this will"

     SEE ALSO
          Skip EndSkip

     CAUTION
	  With the V1.3 version of SKIP, you should NOT
	  indent a LAB statement or that label will not be found.
