16 Feb 2023 - me :3
This is a syntax comparison of Lisp-like languages (Clojure, Common Lisp, Scheme (Racket) and possibly more in the future)
VERY UNFINISHED, will be updated gradually as I go through learning Lisp and its derivatives
(defn double
[x]
(/ x 2))
(defun half (x)
(/ x 2))
(define (half x)
(/ x 2))
(fn [x]
(/ x 2))
#(/ % 2)
(lambda (x)
(/ x 2))
(lambda (x)
(/ x 2))