def interpret(self, match): actor = IsPerson() + StarsIn(match.tvshow) name = LabelOf(actor) return name, "enum"
def interpret(self, match): _movie, i, j = match.movie actor = NameOf(IsPerson() + StarsIn(_movie)) return actor, ReturnValue(i, j)
def interpret(self, match): actor = NameOf(IsPerson() + StarsIn(match.movie)) print(actor) return actor, "enum"
def interpret(self, match): tv_show, i, j = match.tvshow actor = IsPerson() + StarsIn(tv_show) name = LabelOf(actor) return name, ReturnValue(i, j)