Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 22, 2022 20:42
Show Gist options
  • Save Deleplace/05b836d29a9649acb4859c9d6e0b3007 to your computer and use it in GitHub Desktop.
Save Deleplace/05b836d29a9649acb4859c9d6e0b3007 to your computer and use it in GitHub Desktop.
void main() {
var a = [4, 5, 6, 7, 8, 9, 10];
var b = [1, 3, 9, 5, 7, 9, 7, 7];
var c = {...a,...b};
print(c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment