In Standard Pascal what are considered simple types? Are these the only types that can be returned from a function?
+1
A:
according to the spec, simple types are integer, real, Boolean, char, enumerated ((red, yellow, green, blue, tartan)), and subrange (1..100). also according to the spec, functions can return only simple-type-identifier or (|) pointer-type-identifier.
ax
2010-05-03 17:08:27
Thanks for the info
2010-05-19 16:51:13