tags:

views:

29

answers:

1

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
Thanks for the info