Numeric: Difference between revisions
Jump to navigation
Jump to search
(edit) |
|||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
'''Numeric''' variables are one of two [[variable]] types available in BR | '''Numeric''' variables are one of two [[variable]] types available in BR. | ||
*All normal [[Variable Naming Requirements]] apply | *All normal [[Variable Naming Requirements]] apply | ||
*May not end with a $ | *May not end with a $ | ||
===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 [[Operations|Numeric operators]] section | |||
<noinclude> | <noinclude> | ||
[[Category: | [[Category:Variable]] | ||
</noinclude> | </noinclude> |
Latest revision as of 17:52, 29 June 2015
Numeric variables are one of two variable types available in BR.
- All normal Variable Naming Requirements apply
- May not end with a $
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