[I6] VerbSub with multiple objects

How can I create a verb sub with multiple objects? The input to parse is “rip page from pad” or the likes. So far I’ve only handed over a single noun (e.g. “* noun → Rip;”), and I can’t find any hints on how to handle multiple objects.

It’s simply

Verb 'rip' * noun 'from' noun  -> Rip

Although in this case you might want to just say

Verb 'rip' = 'remove';

…and put your code in the Remove action.

There are several examples of this in chapter 30, “How Verbs are Parsed”.