Difference between revisions of "Result"

From Wiki
Jump to: navigation, search
m
Line 1: Line 1:
__NOTOC__
+
{{header|result|rw|holds the value from the last [[return]] statement executed.}}
== #result ==
+
'''Result System Variables'''
+
=== Description ===
+
{{rw}}
+
 
+
holds the value from the last [[return]] statement executed.
+
  
 
==== Example ====
 
==== Example ====
Line 20: Line 14:
  
 
</pre>
 
</pre>
==== See Also ====
+
{{footer}}
{|
+
| Width=200px | [[result]]
+
|}
+
----
+
{|
+
| Width=200px | [[Main_Page]] || Width=200px | [[Documentation]] || Width=200px | [[Documentation#Result|Result System Variables]]
+
|}
+

Revision as of 12:14, 26 August 2005

holds the value from the last return statement executed.

Example


gosub xor 1875 618 
display #result 
halt 
 
sub xor
{ 
  return %1 && ! %2 || ! %1 && %2 
}

See also

Main Page Documentation