Logo

Programming-Idioms

History of Idiom 55 > diff from v96 to v97

Edit summary for version 97 by programming-idioms.org:
New Elixir implementation by user [programming-idioms.org]

Version 96

2020-05-10, 21:41:48

Version 97

2020-05-10, 21:42:06

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 = "#{i}"