IntToStr

From SCAR Divi Manual
Revision as of 12:38, 29 June 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> function IntToStr(i: Int64): string; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Converts an [[integer...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function IntToStr(i: Int64): string;

Availability

SCAR Divi 3.00 > Current

Description

Converts an integer value i to a string.

Example

begin
  WriteLn('5 = ' + IntToStr(5));
end.

Output:

5 = 5

See Also