Logo

Programming-Idioms

History of Idiom 55 > diff from v56 to v57

Edit summary for version 57 by programming-idioms.org:
[Scala] Result name is s

Version 56

2017-09-05, 20:13:55

Version 57

2017-09-05, 20:19:15

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 i = 5
i.toString
Code
val s = i.toString