Doubts in ada language involving procedures
- by maddy
Hi All,
I am a beginner in ada and i had come across a piece of code which is shown below:
procedure Null_Proc is
begin
null;
end;
Now as per my knowledge the procedure in ada doesn't return anything.My doubt is what does this procedure Null_proc do?I mean i am not clear with the definition of the procedure.
Thanks and regards
Maddy