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

6 lines
118 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
private package P.Q is
... -- Visible to the siblings only
private
... -- Visible to the children only
end P.Q;