Task
📝 **Task:** Write generator \`evens(n)\` yielding even numbers from 0 up to (not including) n. Print \`list(evens(10))\`. Expected: [0, 2, 4, 6, 8]
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.