fn omitFirstInteger(arg1: int, ...rest) { //rest comes in as an array of any return rest; } print omitFirstInteger(1, 2, 3);