Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Ada

Idiom #153 Concatenate string with integer

Create the string t as the concatenation of the string s and the integer i.

t : String := s & Integer'Image (i);
(def t (str s i))

New implementation...
< >
programming-idioms.org