RosettaCodeData/Task/Introspection/ALGOL-68/introspection-1.alg

7 lines
258 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
BEGIN
print (("Integer range: ", -max int, " .. ", max int, new line));
print (("Integer digits: ", int width, new line));
print (("Float range: ", -max real, " .. ", max real, new line));
print (("Float digits: ", real width, new line))
END