Hello,
I feel EXTREMELY embarassed asking this. I just haven't worked with Pascal in a while. I need to make a very simple only output application. I'm using the VP Integrated Development Environment.

All I need to do is know what the outline is for a basic program:

Would this be correct?

Program myProgNameHEre (output);
Uses crt;
Begin
Writeln('Hello');
Writeln('I want to know if this is correct');
Writeln('Pascal can be fun');
Readkey;
End.

----------
END OF PROGRAM


Please give me any input, thanks.