Skip to content
This repository has been archived by the owner on Oct 1, 2019. It is now read-only.

Create .bli #2086

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .bli
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
%TITLE 'helloworld'
MODULE helloworld (IDENT='V1.0', MAIN=helloworld,
ADDRESSING_MODE (EXTERNAL=GENERAL)) =
BEGIN

LIBRARY 'SYS$LIBRARY:STARLET';

EXTERNAL ROUTINE
LIB$PUT_OUTPUT;

GLOBAL ROUTINE helloworld =
BEGIN
LIB$PUT_OUTPUT(%ASCID %STRING('Hello world!'))
END;

END
ELUDOM