mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 16:56:47 +00:00
7 lines
170 B
COBOL
7 lines
170 B
COBOL
IDENTIFICATION DIVISION.
|
|
PROGRAM-ID. HELLO-WORLD.
|
|
PROCEDURE DIVISION.
|
|
DISPLAY 'FaaS running COBOL in a container!'.
|
|
STOP RUN.
|
|
|