Size: 25
Comment:
|
← Revision 6 as of 2015-05-05 05:42:03 ⇥
Size: 899
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;">end || ||<#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;">end || Allows you to stop a script at that line, so further processing of lines will not take place. {{{ if (10 > 11) goto endTest end label endTest echo "This line will never show up because 10 is not greater than 11, and the 'end' above will stop the script" }}} ---- |
Usage: |
end |
Example: |
end |
Allows you to stop a script at that line, so further processing of lines will not take place.
if (10 > 11) goto endTest end label endTest echo "This line will never show up because 10 is not greater than 11, and the 'end' above will stop the script"