Skip to content

Instantly share code, notes, and snippets.

@earl-ducaine
Created August 23, 2018 05:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save earl-ducaine/dd90263f81d44ab1de90c868bff86c1f to your computer and use it in GitHub Desktop.
Save earl-ducaine/dd90263f81d44ab1de90c868bff86c1f to your computer and use it in GitHub Desktop.
(defmacro valid-address? (address)
`(and (numberp ,address) (>= ,address 0) (<= ,address 65535)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment