RosettaCodeData/Task/Pointers-and-references/Ada/pointers-and-references-1.ada

3 lines
76 B
Ada
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
type Int_Access is access Integer;
Int_Acc : Int_Access := new Integer'(5);