Emacs is now considering caaar (and the other cXXXr functions) as a subr function rather than part of cl: https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=43eba4955350b787c5567a31e2980ae70b9fb52f
Related Posts
I'm never sure how to convert words with hyphens into SCREAMING_SNAKE_CASE. For example, should built-in function be BUILT_IN_FUNCTION or BUILTIN_FUNCTION?
Playing with optional type signatures in Python, I realise that the return type is the most important to me.
I'd much rather have a function with only a return type instead of a function with only parameter types. It's often quick to add too.
Go has an elegant approach to defining example functions, which are shown in docs as `main()` with the output: https://go.dev/blog/examples