Numeric: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
Line 10: Line 10:
  00030 let c = 2 * b
  00030 let c = 2 * b


To learn more about the use of numeric variables, refer to the [[Numeric operators]] section
To learn more about the use of numeric variables, refer to the [[Operations|Numeric operators]] section


<noinclude>
<noinclude>
[[Category:Variable]]
[[Category:Variable]]
</noinclude>
</noinclude>

Revision as of 01:23, 15 January 2013

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

Example

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

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