This commit is contained in:
Wolfgang Hottgenroth 2020-03-27 22:46:03 +01:00
commit b68b5e1a55
No known key found for this signature in database
GPG Key ID: 656C88C7C1734267
2 changed files with 10 additions and 0 deletions

8
shortProgram.cob Normal file
View File

@ -0,0 +1,8 @@
000010 IDENTIFICATION DIVISION.
000020 PROGRAM-ID. ShortestProgram.
000030 AUTHOR. Wolfgang Hottgenroth.
000040 PROCEDURE DIVISION.
000050 DisplayPrompt.
000060 DISPLAY "I did it".
000070 STOP RUN.

2
startCompilerContainer.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
docker run -it --rm -v $PWD:/work registry.gitlab.com/wolutator/cobol-docker bash