Skip to content

Instantly share code, notes, and snippets.

@tosiara
Created October 11, 2021 09:53
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 tosiara/13b0146acccf285ccd4a5bd3f7cc0be4 to your computer and use it in GitHub Desktop.
Save tosiara/13b0146acccf285ccd4a5bd3f7cc0be4 to your computer and use it in GitHub Desktop.
Ruby WTF
def a; end
def b; end
puts "Before patching:"
print a
print b
a = {}
b {}
puts "After patching:"
print a
print b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment