Skip to content

Commit a3baaa9

Browse files
Created HelloWorld
Hello World in the old systems language, BLISS.
1 parent c3b8236 commit a3baaa9

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Bliss/HelloWorld.bli

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
%TITLE 'helloworld'
2+
MODULE helloworld (IDENT='V1.0', MAIN=helloworld,
3+
ADDRESSING_MODE (EXTERNAL=GENERAL)) =
4+
BEGIN
5+
6+
LIBRARY 'SYS$LIBRARY:STARLET';
7+
8+
EXTERNAL ROUTINE
9+
LIB$PUT_OUTPUT;
10+
11+
GLOBAL ROUTINE helloworld =
12+
BEGIN
13+
LIB$PUT_OUTPUT(%ASCID %STRING('Hello world!'))
14+
END;
15+
16+
END
17+
ELUDOM

0 commit comments

Comments
 (0)