Logo

Programming-Idioms

History of Idiom 55 > diff from v74 to v75

Edit summary for version 75 by fojji:
New Kotlin implementation by user [fojji]

Version 74

2019-09-26, 16:04:34

Version 75

2019-09-26, 18:39:23

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
val x = 42.toString()