Variables, Constants and Types
|
Previous Top Next |
|
|
V0 R:= 100000.125;
|
|
|
V1 R:= V0; V1 will receive 100000.125
|
· | The numerical constant values can be represented in the traditional decimal system, as shown in the given examples above.
|
· | Or can, still, be represented in the binary (2-base) or hexadecimal format (16-base), as long as preceded of 2# (for example, 2#1000 = 8), or 16# (for example, 16#1C = 28), respectively. Note that negative numbers aren't allowed when such formats are utilized.
|