1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 05:17:37 +00:00

fix: rename

This commit is contained in:
Natapat Samutpong 2022-01-24 05:33:43 +07:00
parent 2f81911813
commit a92db6a448

View file

@ -1,12 +1,12 @@
# vl
# bobbylisp
another lisp dialect
```lisp
; example/s.blsp
(fun factorial (x)
(if (<= x 1)
1
(* x (factorial (- x 1)))))
(do
(print (factorial 7)))
```