Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 344 Bytes

WISHLIST.md

File metadata and controls

20 lines (15 loc) · 344 Bytes

Wishlist

If a whish becomes fullfilled, it immediately gets kids.

Syntactical sugar

  • [args) x] for #'((args) (x))
  • (x). for (car (x)) – CxR dot notation for expression results.

Destructuring argument definitions

#'({:name :surname})
    (format t "Hello ~A ~A!~%" name surname))
; CAR ;)
#'(x.)
    x)