Over the weekend, I took a detour into the lisp land and I met racket. This is what I was able to piece together

Phase 1: Syntax & Core Arithmetic

Racket uses prefix notation enclosed in execution parentheses (operator arg1 arg2). The open parenthesis ( acts as an execution trigger. Evaluation runs from the innermost to the outermost parentheses.

Core Examples

;; Basic Arithmetic