Logo

Programming-Idioms

  • Go
  • Dart
  • Dart

Idiom #289 Concatenate two strings

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

var s = a + b;
var s = '$a$b';
s := a + b
S : constant String := A & B;

New implementation...