Racket Section Racket is a dynamically typed, functional language derived from Scheme.
P.S. In fact, compared to Scheme, it does have classes and objects.
Syntax Racket’s syntax is particularly distinctive, characterized by two main features: parentheses and prefix notation, with examples to follow.
In Racket, everything can be classified into two categories:
Atomic Types (atoms): Literals: #t, 11, "hi", null, etc. Variable names: x Keywords: define, lambda, if, etc. A sequence within parentheses The first element in each sequence affects the subsequent elements If the first element is not a keyword and the sequence is part of an expression, it is called as a function (including +, -, *, / which are all functions) The entire sequence represents the corresponding abstract syntax tree with no ambiguity Delayed Evaluation and Thunks A key semantic design in language: when are sub-expressions evaluated?
...