> * ( post )
> rest 1
>
> :
>
>
> def foo(x, *xs)
> puts "#{x} : #{xs.inspect}" # Object#inspect p
> end
> foo(1) #=> 1 : []
> foo(1, 2) #=> 1 : [2]
> foo(1, 2, 3) #=> 1 : [2, 3]
>
> def bar(x, *) #
> puts "#{x}"
> end
> bar(1) #=> 1
> bar(1, 2) #=> 1
> bar(1, 2, 3) #=> 1
>
****