Wiki

Changes between Version 3 and Version 4 of Variables

Show
Ignore:
Timestamp:
04/09/13 14:36:31 (12 years ago)
Author:
torial
Comment:

Fixed typo

Legend:

Unmodified
Added
Removed
Modified
  • Variables

    v3 v4  
    3535{{{ 
    3636s = "name:" # s is a String since thats what it is assigned from 
    37 greet = 'hello" + 'Mike.' # also a String since the assignment is a (String) expression 
     37greet = 'hello ' + 'Mike.' # also a String since the assignment is a (String) expression 
    3838 
    3939i = 99 # i is an int (int32)  since thats what 99 is