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

6 lines
151 B
Ada
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
package P is
... -- Declarations placed here are publicly visible
private
... -- These declarations are visible only to the children of P
end P;