Inc

From SCAR Divi Manual
Revision as of 16:48, 2 July 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure Inc(var x); </source> ==Availability== SCAR Divi 3.00 > Current *Before SCAR Divi 3.12 the function was defined as: ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

procedure Inc(var x);

Availability

SCAR Divi 3.00 > Current

  • Before SCAR Divi 3.12 the function was defined as:
procedure Inc(var i: Integer);
  • Before SCAR Divi 3.26 the function did not accept the data type Int64.

Description

Increases the value of an integer variable by 1. An extended function with additional functionality is available as IncEx.

Accepted Types

Example

var
  i: Integer;

begin
  i := 1;
  Inc(i);
  WriteLn(i);
end.

Output:

2

See Also