Skip to content

Instantly share code, notes, and snippets.

@piyushmaurya23
Last active October 16, 2015 20:24
Show Gist options
  • Save piyushmaurya23/d76432ad3c1719f90405 to your computer and use it in GitHub Desktop.
Save piyushmaurya23/d76432ad3c1719f90405 to your computer and use it in GitHub Desktop.
1. Define a LISP function to compute sum of squares.
(defun square_sum(x y)
(+ (* x x) (* y y)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment