Dart Concat String et int

void main() {
  int num = 5;
  print("The number is $num");
}
Jealous Jaguar