I want to do something like this:
: match "give _" {
: if (is_carried "_") {
: print "He says, \"Thanks, but I have no use for that.\";
}
}
In other words, for whatever object is specified in the input, I need to be able to check if it's carried. There are dozens of other situations where this sort of situation occurs. How do I refer to the generic noun in the subsequent tests where I've used "_"?
