Skip to content

Instantly share code, notes, and snippets.

@Aniket-508
Created January 12, 2022 05:56
Show Gist options
  • Save Aniket-508/a5f97228ad983430b6d26f8c3d0eff62 to your computer and use it in GitHub Desktop.
Save Aniket-508/a5f97228ad983430b6d26f8c3d0eff62 to your computer and use it in GitHub Desktop.
Program to find area of a square in Lisp programming language.
(defun AreaOfSquare()
(terpri)
(princ "Enter Side: ")
(setq side (read))
(setq area (* side side))
(princ "Area: ")
(write area))
(AreaofSquare)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment