Logo

Programming-Idioms

History of Idiom 55 > diff from v73 to v74

Edit summary for version 74 by foobar:
New Lisp implementation by user [foobar]

Version 73

2019-09-26, 14:07:22

Version 74

2019-09-26, 16:04:34

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
(setf s (princ-to-string i))