macintosh_cookbook/examples/console.pas
2020-05-07 18:47:11 +09:00

22 lines
345 B
ObjectPascal

program ExampleConsole;
const
message = ' Welcome to the world of Pascal ';
type
name = String;
var
firstname, surname: name;
begin
ShowText;
Writeln('Please enter your first name: ');
Readln(firstname);
Writeln('Please enter your surname: ');
Readln(surname);
Writeln;
Writeln(message, ' ', firstname, ' ', surname);
end.