Numeric: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
(edit)
(edit)
Line 4: Line 4:
*May not end with a $
*May not end with a $


To learn more about the use of numeric variables, refer to the [[Numeric operations]] section
==Example==
 
00010 let a = 10
00020 let a += 1
00030 let b = 2 * a + 1
 
To learn more about the use of numeric variables, refer to the [[Numeric operators]] section


<noinclude>
<noinclude>

Revision as of 16:04, 6 January 2012

Numeric variables are one of two variable types available in BR.

Example

00010 let a = 10
00020 let a += 1
00030 let b = 2 * a + 1

To learn more about the use of numeric variables, refer to the Numeric operators section