Skip to content

Instantly share code, notes, and snippets.

@glv
Created July 1, 2016 19:32
Show Gist options
  • Save glv/26b4ff03f4cbc4b768f363a64d4d791c to your computer and use it in GitHub Desktop.
Save glv/26b4ff03f4cbc4b768f363a64d4d791c to your computer and use it in GitHub Desktop.
Dave Thomas' Ruby puzzler
# What is the value of this Ruby expression?
% % % % %
# There's a trailing space, which is important!
# It evaluates to "%". Why? It's equivalent to this:
%|%|% %|%|
# which parses as:
'%' % '%'
# which is equivalent to:
sprintf('%s', '%')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment