RosettaCodeData/Task/Scope-modifiers/Ada/scope-modifiers-3.ada
2023-07-01 13:44:08 -04:00

4 lines
142 B
Ada

package body P is
-- The implementation of P, invisible to anybody
procedure W (X : in out T); -- Operation used only internally
end P;