C$VERSION The C$VERSION retrieves the isCOBOL framework version. Syntax: CALL "C$VERSION" USING version Parameters: version PIC X(n) After this routine has been called this data item contains the isCOBOL version framework. The same result is reachable through the following statement: ACCEPT version FROM ENVIRONMENT "runtime.versione" Examples: Example - Get the isCOBOL runtime version *> define ws-version as pic x(n) call "C$VERSION" using ws-version display message "isCOBOL Framework version:" x"0d0a" ws-version