Logo

Programming-Idioms

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

Idiom #289 Concatenate two strings

Create the string s by concatenating the strings a and b.

S : constant String := A & B;
(def s (str a b))

New implementation...