Node:Void, Next:while, Previous:virtual, Up:Reference
(Under construction.)
type Void { built-in type }
Void
is a GNU Pascal extension.
program VoidDemo; procedure p (var x: Void); begin end; var i: Integer; s: String (42); begin p (i); p (s) end.