We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Function declaration: (defun square (x) (* x x))
(defun square (x) (* x x))
The text was updated successfully, but these errors were encountered:
@tshemsedinov I just want to point out that it might not be as easy as it seems because of the following functions features:
(defun square (x) "Multiplying a number by itself." (* x x))
(defun foo (a b &optional c d) (list a b c d))
(defun format (stream string &rest values) ...)
(defun foo (&key a b c) (list a b c))
(defun foo (x &optional y &key z) (list x y z))
I'm also in doubts about to include lambda functions in this issue or not to include.
lambda
Sorry, something went wrong.
zpwebbear
No branches or pull requests
Function declaration:
(defun square (x) (* x x))
The text was updated successfully, but these errors were encountered: