Lisp has some of the easist syntax there is (only other contender is whitespace).
(function-call
(+ 5 4)
9
"Hello I like your service"
`(this is read as a list of keywords rather than as a call to the function this with the rest as arguments ,the-value-of-me-is-inserted-due-to-the-comma this-keyword-is-not-changed))
(function-call (+ 5 4) 9 "Hello I like your service" `(this is read as a list of keywords rather than as a call to the function this with the rest as arguments ,the-value-of-me-is-inserted-due-to-the-comma this-keyword-is-not-changed))
Is pretty much the entirety of Lisp syntax.