Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Haskell
s = [c]

In Haskell, the String type is only an alias for [Char] which means List of chars. Therefore, we only need to construct a character list with a single element.
S : constant String := "" & C;

Create string by concatenating character to empty string

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