5 lines
151 B
Ada
5 lines
151 B
Ada
package P is
|
|
... -- Declarations placed here are publicly visible
|
|
private
|
|
... -- These declarations are visible only to the children of P
|
|
end P;
|