RosettaCodeData/Task/Scope-modifiers/Ada/scope-modifiers-1.ada
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07: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;