User Tools

Site Tools


en:variables

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:variables [2016/01/01 22:42]
127.0.0.1 external edit
en:variables [2020/02/28 10:46]
Line 1: Line 1:
-===== Variables ===== 
-Variables that hold numeric values must begin with a letter, and may consist of any number of alpha-numeric characters.  They are case sensitive.  They may be used interchangeably with numeric constants.\\ 
-\\ 
-Variables that hold string values follow the same rules as numeric variables, but must end with a dollar sign ($).  They may be used interchangeably with string constants. 
-\\ 
-When you assign a numeric value to a string variable or add a numeric value to a string (concatenate) the number will be automatically converted to a string before the operation is completed.  A string value may not be assigned directly to a numeric variable or array element without manually converting it's type using the [[int|Int]] or [[float|Float]] functions.   
-\\ 
-^Variable Assignment^^^^ 
-^Operator^Name^Example^Comments^ 
-|=|Assign a Number to a Numeric Variable|a = 9| | 
-|=|Assign a String to a String Variable|z$ = "Hola."| | 
-|=|Assign a Number to a String Variable|q$ = 9.9| | 
-|+=|Add to Numeric Variable|a += 7|Same as a = a + 7 <sup>1</sup>| 
-|+=|Concatenate to String Variable|f$ += "."|Same as f$ = f$ + "."  <sup>1</sup>| 
-|-=|Subtract from Numeric Variable|a -= 9|Same as a = a - 9 <sup>1</sup>| 
-|*=|Multiply Numeric Variable|a *= 2|Same as a = a * 2 <sup>1</sup>| 
-|/=|Divide Numeric Variable|a /= 8|Same as a = a / 8 <sup>1</sup>| 
  
-\\ 
-<sup>1</sup> added with version 0.9.9.10 
en/variables.txt ยท Last modified: 2020/02/28 10:46 (external edit)