Skip to content

Instantly share code, notes, and snippets.

@ataulm
Created August 10, 2018 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ataulm/8a31081d0e138a9ee61c06615860ae5c to your computer and use it in GitHub Desktop.
Save ataulm/8a31081d0e138a9ee61c06615860ae5c to your computer and use it in GitHub Desktop.
val a = listOf(1, 2, 3)
val b = listOf("four", "five", "six")
val mix = a + b
println(mix) // prints [1, 2, 3, four, five, six]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment