Well, I got open-cobol to compile and run a simple "Hello Word" program. So it works.
It seems that Cobol is still in the punch card age in which commands have to start in the 8th column. But open-cobol has a freestyle option.
(e:paul) wanted to see some code:
Here's the sort of COBOL"hello world" I remember from my college days:
000100 IDENTIFICATION DIVISION.
000200 PROGRAM-ID. HELLOWORLD.
000300
000400*
000500 ENVIRONMENT DIVISION.
000600 CONFIGURATION SECTION.
000700 SOURCE-COMPUTER. RM-COBOL.
000800 OBJECT-COMPUTER. RM-COBOL.
000900
001000 DATA DIVISION.
001100 FILE SECTION.
001200
100000 PROCEDURE DIVISION.
100100
100200 MAIN-LOGIC SECTION.
100300 BEGIN.
100400 DISPLAY " " LINE 1 POSITION 1 ERASE EOS.
100500 DISPLAY "Hello world!" LINE 15 POSITION 10.
100600 STOP RUN.
100700 MAIN-LOGIC-EXIT.
100800 EXIT.
Here's the same thing freestyled in open-cobol.
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
PROCEDURE DIVISION.
DISPLAY 'Hello world!'.
STOP RUN.
Disney is just a facade for corporate evil that thrives on manipulation of mindsets of children.
I was reading an article on osnews the other day saying that the US forced Spain into similar legislation and that Disney was the driving force. The author found it ironic because Disney made a heck of a lot of money appropriating European public domain fairy tales.