function inline



inline function
Smart pascal source code
function Next(i: Integer): Integer; inline; begin Result := i + 1; end; WriteLn(Next(1)); var i := 2; WriteLn(Next(i)); {<<< RESULT - CONSOLE LOG >>> ----------------------------- 2 3 ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}