include xpllib; \for StrSort and Print int X, Y, Z; int L, M, H; real RX, RY, RZ, RT; [X:= 77444; Y:= -12; Z:= 0; L:= X; if L>Y then L:= Y; if L>Z then L:= Z; H:= X; if HRY then [RT:= RX; RX:= RY; RY:= RT]; if RY>RZ then [RT:= RY; RY:= RZ; RZ:= RT]; if RX>RY then [RT:= RX; RX:= RY; RY:= RT]; RlOut(0, RX); CrLf(0); RlOut(0, RY); CrLf(0); RlOut(0, RZ); CrLf(0); X:= "lions, tigers, and"; Y:= "bears, oh my!"; Z:= "(from the ^"Wizard of OZ^")"; StrSort(@X, 3); \the address of X is used as an array containing X, Y, Z Print("%s\n%s\n%s\n", X, Y, Z); ]