Node:Void, Next:, Previous:virtual, Up:Reference



Void

(Under construction.)

Synopsis


type
  Void  { built-in type }

Description

Conforming to

Void is a GNU Pascal extension.

Example


program VoidDemo;

procedure p (var x: Void);
begin
end;

var
  i: Integer;
  s: String (42);

begin
  p (i);
  p (s)
end.

See also