Changes between Version 3 and Version 4 of Variables
- Timestamp:
- 04/09/13 14:36:31 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Variables
v3 v4 35 35 {{{ 36 36 s = "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) expression37 greet = 'hello ' + 'Mike.' # also a String since the assignment is a (String) expression 38 38 39 39 i = 99 # i is an int (int32) since thats what 99 is