In the following example, the message parameter is specified twice. You must delete one of the entries.
class-id a. *>> <summary> *>> Displays a message *>> </summary> *>> <param name="message"> The message to be displayed in the console window.</param> *>> <param name="message"> The message displayed.</param> method-id MsgOut. procedure division using by value #message as string. display #message end method. end class.