*>-<* *> Author: Brian Tiffin *> Dedicated to the public domain *> *> Date started: December 2016 *> Modified: 2017-01-03/01:28-0500 *> *> Tectonics: cobc -m cobolnative.cob *>+<* *> *> Demonstrate Unicon native call of COBOL modules *> identification division. program-id. cobolnative. data division. working-storage section. linkage section. 01 one usage binary-long. 01 two usage binary-long. procedure division using by value one two. display "GnuCOBOL got " one ", " two compute return-code = one + two goback. end program cobolnative.