Label Statement Example
Previous Topic  Next Topic 

An example of a label statement is as follows:



func  f()


// This is a label statement

mylabel:


     // ..then a goto statement

    goto mylabel;

endfunc


  


Labels can be used in goto_statements and well as jump_statements