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

3 lines
76 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
type Int_Access is access Integer;
Int_Acc : Int_Access := new Integer'(5);