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

6 lines
118 B
Ada
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
private package P.Q is
... -- Visible to the siblings only
private
... -- Visible to the children only
end P.Q;