Skip to content

Instantly share code, notes, and snippets.

@hkoba
Created November 29, 2021 01:54
Show Gist options
  • Save hkoba/dfc868fd8b252a781a54fd51bc9a105b to your computer and use it in GitHub Desktop.
Save hkoba/dfc868fd8b252a781a54fd51bc9a105b to your computer and use it in GitHub Desktop.
leading comma is not allowed in ruby
def foo(x, y, z)
puts x, y, z
end
foo(3
, 4
, 5
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment