User Tools

Site Tools


en:variables

Differences

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

Link to this comparison view

Next revision
Previous revision
Next revision Both sides next revision
en:variables [2016/01/01 22:42]
127.0.0.1 external edit
en:variables [2016/08/07 21:19]
admin
Line 1: Line 1:
 ===== Variables ===== ===== 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.\\+You can think of a variable as a place in the computer's memory to store things.  Each variable has a name that must begin with a letter, and may consist of any number of letters, numbers, and dollar signs.  They are case sensitive.\\ 
 + 
 +==== Example ==== 
 +|a = 99|Assigns the integer 99 to the variable a| 
 +|nom = "Jim"|Assigns the string "Jim" to the variable nom| 
 +|print "Say hello to " + nom|Appends the string in nom the the string "Say hello to " and displays the result| 
 +|a = a + 1|Takes the value of a and adds one to it, then store the new value back into a| 
 \\ \\
-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. +In previous versions (before 1.99.99.8) Variables that contained strings were required to end with a dollar sign ($).  This limitation has been removed and any variable may store any type of value.\\
-\\ +
-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^^^^ ^Variable Assignment^^^^
 ^Operator^Name^Example^Comments^ ^Operator^Name^Example^Comments^
-|=|Assign a Number to a Numeric Variable|a = 9| | +|=|Assign a Number to a Variable|a = 9| | 
-|=|Assign a String to a String Variable|z= "Hola."| | +|=|Assign a String to a Variable|z = "Hola."| | 
-|=|Assign a Number to a String Variable|q$ = 9.9| | +|=|Assign a Number to a Variable|q$ = 9.9| | 
-|+=|Add to Numeric Variable|a += 7|Same as a = a + 7 <sup>1</sup>+|+=|Add to Variable|a += 7|Same as a = a + 7| 
-|+=|Concatenate to String Variable|f+= "."|Same as f= f+ "."  <sup>1</sup>+|+=|Concatenate to Variable|f += "."|Same as f = f + "."
-|-=|Subtract from Numeric Variable|a -= 9|Same as a = a - 9 <sup>1</sup>+|-=|Subtract from Variable|a -= 9|Same as a = a - 9| 
-|*=|Multiply Numeric Variable|a *= 2|Same as a = a * 2 <sup>1</sup>+|*=|Multiply Variable|a *= 2|Same as a = a * 2| 
-|/=|Divide Numeric Variable|a /= 8|Same as a = a / 8 <sup>1</sup>|+|/=|Divide Variable|a /= 8|Same as a = a / 8|
  
-\\ 
-<sup>1</sup> added with version 0.9.9.10 
en/variables.txt · Last modified: 2020/02/28 10:46 (external edit)