Borland Pascal Wiki
Borland Pascal Wiki
 This script page was blocked. The script was reviewed and it works perfectly so this page doesn't need anymore editing.

This script will request the user's name and then print it on the screen together with a hello.

 var name:string;
 begin
 write ('Please tell me your name: ');
 readln (name);
 writeln ('Hello, ',name,'!');
 readln;
 end.

Explanation

Writes on the screen "Please tell me your name: " and then waits until the user introduces a character string. Then it writes "Hello, " together with the contents of the name variable and an exclamation sign (!).

Screenshot

Hello name