以下代码:
IDENTIFICATION DIVISION.
PROGRAM-ID. tester.
PROCEDURE DIVISION.
greet_program.
DISPLAY "HELLO WORLD !".
STOP RUN.
产生一个编译器错误,它说:Error: syntax error, unexpected WORD, expecting PROGRAM_ID
我无法发现错误。它在哪里 ?
该程序的错误在ideone中列出
以下代码:
IDENTIFICATION DIVISION.
PROGRAM-ID. tester.
PROCEDURE DIVISION.
greet_program.
DISPLAY "HELLO WORLD !".
STOP RUN.
产生一个编译器错误,它说:Error: syntax error, unexpected WORD, expecting PROGRAM_ID
我无法发现错误。它在哪里 ?
该程序的错误在ideone中列出