Comment

The Door Opens - Update: The Door Closes

456
jcm1/31/2009 8:34:25 pm PST

re: #420 victor_yugo

Incorrect. The correct version goes thus:

int main(int argc, char *argv[]) {
printf(“hello, worldn”);
return 0;
}

Old School….

— Hello World
with Text_IO;
use Text_IO;

procedure HelloWorld is
begin
Put_Line(“Hello World”);
end HelloWorld;