Advertisement
Guest User

b.adb

a guest
May 12th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.26 KB | None | 0 0
  1. with Person;
  2. with Ada.Text_IO; use Ada.Text_IO;
  3.  
  4. package body B is
  5.    procedure Print_Modify is
  6.       package I is new Ada.Text_IO.Integer_IO (Integer);
  7.    begin
  8.       I.Put (Person.Unit_Age); New_Line;
  9.       Person.Unit_Age := 20;
  10.    end Print_Modify;
  11. end B;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement