.title hello_world_mar
.ident "V1.0"
;++
;
; Program:
; HELLO_WORLD_MAR
;
; Purpose:
; Hello world written in Macro-32
;
; History:
; 29-Jul-1999 by Simon L. Jackson
; Initial version
;
;--
.library "swrk_macro_lib"
module hello_world_mar start=hello_world_mar
procedure hello_world_mar
static
string hello_world_msg <"Hello World from Macro-32">
code
chksts lib$put_output arglst=<hello_world_msg>
end procedure
end module