1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 07:27:35 +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 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)))
``` ```