Table of Contents
gotoDescriptionTransfer script execution to the specified script line. Note line numbers start at 0. Function prototypevoid goto <int:line> Arguments
Return valueNone (void). Examplegoto 3 // jump to line #3 echo "1" echo "2" echo "3" // goto should jump to this line echo "4" … the output of which is written to the event log by echo as: 3 4 CommentsSee alsoExcept where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Share Alike 3.0 Unported
|