Constant =
SQRT(5, 2100)
Output = "C:\REGINA\SQRT5.REX"
call LINEOUT Output, "SQRT5: procedure; V = '' "
do while Constant > 0
parse var Constant String 60 Constant
call LINEOUT Output, "V = V ||" String
end
call LINEOUT Output, "return V"
exit
SQRT: procedure
...