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/08/09 18:12]
admin
en:variables [2020/02/28 10:46]
Line 1: Line 1:
-===== Variables ===== 
-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| 
- 
-\\ 
-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.\\ 
- 
-See also: [[variableoperators|Variable Operators]] 
- 
  
en/variables.txt ยท Last modified: 2020/02/28 10:46 (external edit)