Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.18 KB | None | 0 0
  1.    function Img (Val : in Track_Number_Pt) return String is
  2.    begin
  3.       if Val = null then
  4.          return "";
  5.       else
  6.          return Img (Val.all);
  7.       end if;
  8.    end Img;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement