RosettaCodeData/Task/Scope-modifiers/Ada/scope-modifiers-1.ada

6 lines
151 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
package P is
... -- Declarations placed here are publicly visible
private
... -- These declarations are visible only to the children of P
end P;