O equivalente do Ruby ao `ary [1:]` do Python

Dado um Array foo, retorna um submatriz, começando com um determinado índice e indo até o final de foo.

foo = [1, 2, 3, 4]

Pitão:

foo[1:]  # [2, 3, 4]

Rubi:

foo.drop(1) # [2, 3, 4]