Skip to content

Commit

Permalink
v1.0.2 :: Just version number fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ProggerX committed Mar 2, 2025
1 parent 7d1d51d commit fa9cc7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ Just an example:
(print "1 <= 2"))
(if (< 1 2) (print "1 < 2")
(print "1 >= 2"))
(defn fac (x) (if (< x 1) 1 (* x (fac (- x 1)))))
(print (fac 6))
```
2 changes: 1 addition & 1 deletion lapse.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: lapse
version: 1.0.0
version: 1.0.2
license: GPL-3.0-only
license-file: LICENSE
author: ProggerX
Expand Down

0 comments on commit fa9cc7e

Please sign in to comment.