6 lines
151 B
Ada
6 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;
|