1.0.2. return - JulTob/Ada GitHub Wiki

Use the statement return to end a function or procedure and return to the calling procedure or function


-- for procedures:
return;            


-- for functions:
return value;