zOs/REXX/OUT

/* copy out begin ******************************************************
    out interface simple with say only
***********************************************************************/
/*--- output a message to the current destination -------------------*/
out: procedure expose m.
parse arg msg
    say msg
    return
endProcedure out
/* copy out end   *****************************************************/