RosettaCodeData/Task/Variable-size-Get/XPL0/variable-size-get.xpl0
2023-07-01 13:44:08 -04:00

9 lines
161 B
Text

include c:\cxpl\codes;
int Size;
int A, B;
real X, Y;
[Size:= addr B - addr A;
IntOut(0, Size); CrLf(0);
Size:= addr Y - addr X;
IntOut(0, Size); CrLf(0);
]