Skip to content

Instantly share code, notes, and snippets.

@vbuaraujo
Created February 20, 2017 21:08
Show Gist options
  • Save vbuaraujo/fd80c26c3a27b1156360375faa4849d9 to your computer and use it in GitHub Desktop.
Save vbuaraujo/fd80c26c3a27b1156360375faa4849d9 to your computer and use it in GitHub Desktop.
(use-modules (srfi srfi-1))
(define valid-tlds '(".com" ".org" ".net")) ;; ...
(define (valid-email? email)
(any (lambda (tld) (string-suffix? tld email)) valid-tlds))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment