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

6 lines
118 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
private package P.Q is
... -- Visible to the siblings only
private
... -- Visible to the children only
end P.Q;