• My Pages
  • Comments
  • Add Link
  • Subscribe
  • Subscribe User
  • Edit (GUI)
  • Edit (Text)
  • Rename Page
  • Copy Page
  • Load Page
  • Save Page
  • Delete Page
  • Attachments
  • Check Spelling
  • Diffs
  • Info
  • Revert to this revision
  • XML
  • Render as Docbook
  • Print View
  • Raw Text
  • Delete Cache
  • Like Pages
  • Local Site Map
  • Remove Spam
  • Package Pages
  • Sync Pages
    • Diff for "Stop"
    Differences between revisions 1 and 2
    Revision 1 as of 2012-10-24 20:32:10
    Size: 25
    Editor: Romulus
    Comment:
    Revision 2 as of 2012-10-29 17:25:28
    Size: 939
    Editor: Inanna
    Comment:
    Deletions are marked like this. Additions are marked like this.
    Line 1: Line 1:
    ||<tablebgcolor="#F9F9F9" tablestyle="margin:1em 1em 1em 0px;border-style:solid;border-color:rgb(170, 170, 170);color:rgb(0, 0, 0);font-family:sans-serif;font-size:13px;line-height:19.5px;text-align:start; " tableclass="wikitable"#F2F2F2 style="border-style:solid;border-color:rgb(170, 170, 170);padding:0.2em; ">Usage: ||<style="border-style:solid;border-color:rgb(170, 170, 170);padding:0.2em;">stop ||
    ||<#F2F2F2 style="border-style:solid;border-color:rgb(170, 170, 170);padding:0.2em; ">Example: ||<style="border-style:solid;border-color:rgb(170, 170, 170);padding:0.2em;">stop ||


    Allows you to stop a script at that line, so further processing of lines will not take place. Functions exactly the same as [[End]].

    {{{
    ifgoto (10 > 11) stopTest
    stop

    label stopTest
    print This line will never print because 10 is not greater than 11, and the 'stop' above will stop the script
    }}}
    ----

    Usage:

    stop

    Example:

    stop

    Allows you to stop a script at that line, so further processing of lines will not take place. Functions exactly the same as End.

    ifgoto (10 > 11) stopTest
    stop
    
    label stopTest
    print This line will never print because 10 is not greater than 11, and the 'stop' above will stop the script


    ScriptControlStructures

    Stop (last edited 2017-01-18 13:59:22 by Romulus)