RosettaCodeData/Task/Scope-modifiers/Ada/scope-modifiers-1.adb
2026-04-30 12:34:36 -04:00

5 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;