Skip to content

Commit

Permalink
COBOL program to display a welcome message.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarrell423 committed Jun 24, 2019
1 parent 2cf95f9 commit 15b6ded
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions welcome.cbl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
000010 IDENTIFICATION DIVISION.
000020 PROGRAM-ID. WELCOME.
000030 ENVIRONMENT DIVISION.
000040 DATA DIVISION.
000050 PROCEDURE DIVISION.
000060
000070 PROGRAM-BEGIN.
000080 DISPLAY "Welcome to GNU COBOL".
000090
000100 PROGRAM-DONE.
000110 STOP RUN.

0 comments on commit 15b6ded

Please sign in to comment.