mirror of
https://github.com/epasveer/seer.git
synced 2026-08-31 01:20:45 +08:00
7 lines
132 B
Ada
7 lines
132 B
Ada
|
|
function Increment_By
|
||
|
|
(I : Integer := 0;
|
||
|
|
Incr : Integer := 1) return Integer is
|
||
|
|
begin
|
||
|
|
return I + Incr;
|
||
|
|
end Increment_By;
|