What is the difference between [ ] and ( ) brackets in Racket (lisp programming language)?
According to the Racket documentation, there is no difference — there is only a convention to use [ and ] for cond clauses (and use your judgement for the rest, as far as I understand): The use of square brackets for cond clauses is a convention. In Racket, parentheses and square brackets are actually interchangeable, … Read more