In Standard Pascal what are considered simple types? Are these the only types that can be returned from a function?
3
votes
2 Answers
2
votes
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.