Logo

Programming-Idioms

History of Idiom 55 > diff from v59 to v60

Edit summary for version 60 by tr:
[Lua] dd

Version 59

2017-10-12, 19:51:45

Version 60

2018-01-20, 12:08:24

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration
Extra Keywords
int base radix conversion
Extra Keywords
int base radix conversion
Code
s = tostring(i)
Code
procedure vetzer(var a:vettore;r:integer);
            var j:integer;
            begin
            for j:=1 to r do
            a[j]:=0;
            end;