Difference between revisions of "Basic Template"

From WikiTI
Jump to: navigation, search
 
(Changed 'token contents' to 'token size')
Line 10: Line 10:
  
 
== Synopsis ==
 
== Synopsis ==
'''Token:''' 03 81 C6
+
'''Size of token:''' 3 bytes
  
 
'''Syntax:''' NewFunc ''required_arg'' [optional_arg1 | optional_arg2 | arg_list_1,arg_list_2,...]
 
'''Syntax:''' NewFunc ''required_arg'' [optional_arg1 | optional_arg2 | arg_list_1,arg_list_2,...]

Revision as of 15:53, 16 September 2006

Note: Do not take the information on this template page as actual documentation!

BASIC commands are organized by category (the available ones are shown on the 83+ BASIC page, but you can create a new one if completely necessary). Remember to put this at the top of the page, replacing "FunctionCategory" and "FunctionName" with the category and name of the function:

[[Category:83Plus:Basic:FunctionCategory:FunctionName]]

Required arguments to the function should be in italics, and optional arguments should be enclosed in square brackets, with a vertical bar to show alternate options. If this sounds confusing, see the template for an example.



Synopsis

Size of token: 3 bytes

Syntax: NewFunc required_arg [optional_arg1 | optional_arg2 | arg_list_1,arg_list_2,...]

Short one-line description.

Outputs:

A more detailed description goes here, describing the results of the function.

Comments

  • Something to watch out for.
  • Another quick tip.

Example

:NewFunc 1,2
:NewFunc 83,"A","B"

See also:

NewFunc2