ECN-4489 Intrinsic function syntax enhancement

Product: ACUCOBOL-GT

Module: Compiler

Machines Affected: All

Known Versions Affected: All

DESCRIPTION:

As a programming convenience, you can now replace the word FUNCTION with $ when calling an intrinsic function. For example:

compute result = function max( function sqrt(src), last-result ) 

can now also be written as:

compute result = $max( $sqrt(src), last-result )