Difference between revisions of "IntToStr"
From SCAR Divi Manual
(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...") |
(No difference)
|
Revision as of 11:38, 29 June 2011
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