RosettaCodeData/Task/Break-OO-privacy/Ada/break-oo-privacy-1.ada
Ingy döt Net 518da4a923 B
2013-04-10 16:19:29 -07:00

10 lines
258 B
Ada

package OO_Privacy is
type Confidential_Stuff is tagged private;
subtype Password_Type is String(1 .. 8);
private
type Confidential_Stuff is tagged record
Password: Password_Type := "default!"; -- the "secret"
end record;
end OO_Privacy;