Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
lisp
hsl
Commits
6b38fb37
Commit
6b38fb37
authored
Dec 09, 2010
by
Juergen Nickelsen
Browse files
a few files being untracked on mellum
parent
9a6338e0
Changes
4
Hide whitespace changes
Inline
Side-by-side
documentation.txt
0 → 100644
View file @
6b38fb37
setq (setq symbol1 value1 ...) special form
Set the named symbols to the specified values.
lambda (lambda ARGS . BODY) special form
Defined an anonymous function.
fset (fset sym value) function
Set the function cell of a symbol.
if (if cond then-clause else-clause1 ...)
lisp/eof.lisp
0 → 100644
View file @
6b38fb37
(
defun
fib
(
n
)
(
if
(
<
n
2
)
n
(
+
(
fib
(
-
n
1
))
(
fib
(
-
n
2
))))
lisp/evfreq.lisp
0 → 100644
View file @
6b38fb37
;; calculate the frequency of evals etc.
(
defspecial
evfreq
forms
lisp/fib.lisp
0 → 100644
View file @
6b38fb37
(
defun
fib
(
n
)
(
if
(
<
n
2
)
n
(
+
(
fib
(
-
n
1
))
(
fib
(
-
n
2
)))))
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment