• AnAngryAlpaca@feddit.de
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    8 months ago

    No wonder COBOL programmers are paid a lot, because what would be a 1-liner for “hello world” in other languages looks like this in Cobol:

    IDENTIFICATION DIVISION.
    PROGRAM-ID. IDSAMPLE.
    ENVIRONMENT DIVISION.
    PROCEDURE DIVISION.
        DISPLAY 'HELLO WORLD'.
        STOP RUN.
    

    This is already $6000 worth of code right there!