GoalScope — poly (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
<code>↵ def poly(xs: list, x: float):↵ """Evaluate polynomial with coefficients xs at point x."""↵ return sum(c * (x ** i) for i, c in enumerate(xs))↵ </code>