Skip to content

Instantly share code, notes, and snippets.

@enebo

enebo/output.txt Secret

Last active January 6, 2023 20:39
Show Gist options
  • Save enebo/5cf383da52e714bc85a34ab61bf40d2f to your computer and use it in GitHub Desktop.
Save enebo/5cf383da52e714bc85a34ab61bf40d2f to your computer and use it in GitHub Desktop.
system ~/work/jruby master 3527% mri31 ../snippets/alias6.rb
2
{:c=>3}
def bar(a: 1, **k)
p a, k
end
def foo(*r)
bar(*r)
end
alias :bar2 :foo
ruby2_keywords :bar2
foo(a: 2, c: 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment