Skip to content

Instantly share code, notes, and snippets.

@pragdave
Created November 28, 2010 23:13
Show Gist options
  • Save pragdave/719382 to your computer and use it in GitHub Desktop.
Save pragdave/719382 to your computer and use it in GitHub Desktop.
def m(*args)
print "Args to m: ", args.inspect, " Result: "
120
end
n = 6
o = 2
# Imagine using a language where whitespace is significant? Pah!
puts(m/n/o)
puts(m /n/o)
puts(m / n/o)
# puts(m /n / o) # Guess what result is before uncommenting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment