(* hello.pas - This is a simple Pascal program. * Remember to save the program before compiling and running. *) program hello; var name : string; begin writeln('Hello, world!!'); writeln(); write('What is your name? '); readln(name); writeln('Say, ', name, ', nice to meet you!'); end.