Skip to content

Instantly share code, notes, and snippets.

@sixtyfive
Created July 28, 2019 23:19
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 sixtyfive/b686ee783265ac28c9a2809fc05ad579 to your computer and use it in GitHub Desktop.
Save sixtyfive/b686ee783265ac28c9a2809fc05ad579 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
a = 3
b = 5
# Wow, this is elegant!
a, b = b, a
puts "a: #{a}"
puts "b: #{b}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment