Created
November 29, 2021 01:54
-
-
Save hkoba/dfc868fd8b252a781a54fd51bc9a105b to your computer and use it in GitHub Desktop.
leading comma is not allowed in ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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