Skip to content

Instantly share code, notes, and snippets.

@catlike
Created September 2, 2010 04:37
Show Gist options
  • Save catlike/561876 to your computer and use it in GitHub Desktop.
Save catlike/561876 to your computer and use it in GitHub Desktop.
def test_swapping_with_parallel_assignment
first_name = "Roy"
last_name = "Rob"
first_name, last_name = last_name, first_name
assert_equal "Rob", first_name
assert_equal "Roy", last_name
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment