Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 13, 2022 13:39
Show Gist options
  • Select an option

  • Save Deleplace/18fad2bbf4dcbc0f4ca04448939a761a to your computer and use it in GitHub Desktop.

Select an option

Save Deleplace/18fad2bbf4dcbc0f4ca04448939a761a to your computer and use it in GitHub Desktop.
Concatenate two strings
void main() {
var a = "Hello";
var b = " Universe";
var s = '$a$b';
print(s);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment