mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
fix: rename
This commit is contained in:
parent
2f81911813
commit
a92db6a448
|
@ -1,12 +1,12 @@
|
||||||
# vl
|
# bobbylisp
|
||||||
another lisp dialect
|
another lisp dialect
|
||||||
|
|
||||||
```lisp
|
```lisp
|
||||||
|
; example/s.blsp
|
||||||
(fun factorial (x)
|
(fun factorial (x)
|
||||||
(if (<= x 1)
|
(if (<= x 1)
|
||||||
1
|
1
|
||||||
(* x (factorial (- x 1)))))
|
(* x (factorial (- x 1)))))
|
||||||
|
|
||||||
(do
|
(do
|
||||||
(print (factorial 7)))
|
(print (factorial 7)))
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue