Skip to content

Instantly share code, notes, and snippets.

@hemantasapkota
Created March 6, 2020 14:57
Show Gist options
  • Save hemantasapkota/a0510a01fd3cc186204bd5ae5f3d0b6e to your computer and use it in GitHub Desktop.
Save hemantasapkota/a0510a01fd3cc186204bd5ae5f3d0b6e to your computer and use it in GitHub Desktop.
;; Arithmetic procedues
;; compute 2 + 3 and print
(format t "~A" (+ 2 6))
;; print newline
(format t "~%")
;; compute 2 - 3 and print
(format t "~A~%" (- 2 3))
;; compute 2 * 3 and print
(format t "~A~%" (* 2 3))
;; compute 2 / 3 and print
(format t "~A~%" (/ 2 3))
(format t "~A~%" (/ (- 7 1) (- 4 2)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment