/*
**++
**
** Program:
** HELLO_WORLD_PLI
**
** Purpose:
** Hello world written in PL/1
**
** History:
** 24-Jul-1999 by Simon L. Jackson
** Initial version
**
**--
*/
hello_world_pli: procedure options ( main );
put list ( 'Hello World from PL/1' );
end hello_world_pli;