<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://brwiki2.brulescorp.com/brwiki2/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=176.8.189.77</id>
	<title>BR Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://brwiki2.brulescorp.com/brwiki2/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=176.8.189.77"/>
	<link rel="alternate" type="text/html" href="https://brwiki2.brulescorp.com/brwiki2/index.php?title=Special:Contributions/176.8.189.77"/>
	<updated>2026-04-16T18:18:01Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://brwiki2.brulescorp.com/brwiki2/index.php?title=GoTo&amp;diff=1174</id>
		<title>GoTo</title>
		<link rel="alternate" type="text/html" href="https://brwiki2.brulescorp.com/brwiki2/index.php?title=GoTo&amp;diff=1174"/>
		<updated>2012-05-09T13:27:21Z</updated>

		<summary type="html">&lt;p&gt;176.8.189.77: *&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GOTO line-num | label&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;GoTo&#039;&#039;&#039; [[statement]] transfers program control to a specified line number or label. The GOTO statement not be executed from the command line. Error 1011 (Illegal immediate statement) will occur if such usage is attempted.&lt;br /&gt;
&lt;br /&gt;
===Comments and Examples===&lt;br /&gt;
&lt;br /&gt;
In the following example, line 320 transfers control to line number 45:&lt;br /&gt;
&lt;br /&gt;
 00045 start: !&lt;br /&gt;
 00050 let a = 1&lt;br /&gt;
 00060 let a += 1&lt;br /&gt;
 00320 GOTO 45&lt;br /&gt;
&lt;br /&gt;
The above example could be rewritten to use a label instead of a line number to transfer control. In the next example, where the GOTO points to a line label, control is transferred to the first executable statement after the label:&lt;br /&gt;
&lt;br /&gt;
 00045 start: !&lt;br /&gt;
 00050 let a = 1&lt;br /&gt;
 00060 let a += 1&lt;br /&gt;
 00320 GOTO start&lt;br /&gt;
&lt;br /&gt;
===Parameters===&lt;br /&gt;
&lt;br /&gt;
GOTO has one required parameter: &#039;&#039;&#039;line-num&#039;&#039;&#039; or &#039;&#039;&#039;label&#039;&#039;&#039;. This is the line number or label that program control is to be transferred to.&lt;br /&gt;
&lt;br /&gt;
===Technical considerations===&lt;br /&gt;
&lt;br /&gt;
# See the ON GOTO statement for a method of branching to one of several lines depending on the value of a numeric expression.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Statements]]&lt;br /&gt;
[[Category:Control Structures]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>176.8.189.77</name></author>
	</entry>
</feed>