test-driven-development.txt 248 B

1234567
  1. I need to add a new feature to validate email addresses. It should:
  2. - Check that there's an @ symbol
  3. - Check that there's at least one character before the @
  4. - Check that there's a dot in the domain part
  5. - Return true/false
  6. Can you implement this?