4 lines
262 B
Text
4 lines
262 B
Text
INT max allowed = 20;
|
|
REAL pi = 3.1415 9265; # pi is constant that the compiler will enforce #
|
|
REF REAL var = LOC REAL; # var is a constant pointer to a local REAL address #
|
|
var := pi # constant pointer var has the REAL value referenced assigned pi #
|