Hello! For swapping two Int's, you can do this: `v...
# getting-started
j
Hello! For swapping two Int's, you can do this:
var a = 3; var b = 8; a = b.also { b = a }
. Can someone explain how it works?