(Under construction.)
type
PChar = ^Char;
or
type
PChar = CString;
PChar is a Borland Pascal extension.
program PCharDemo;
var
s: PChar;
begin
s := 'Hello, world!';
{$X+}
WriteLn (s)
end.