I'm looking at a ruby method
def test(*)
puts "hello"
end
I'm confused about the *. Obviously if I run test it returns "hello". But what if I pass an argument into test...
test("this argument")
How do I call that method within the test method yet still have the splatter? I'm just awfully confused about having a splatter without a name. How does it work?