Fix Lisp package locking

This commit is contained in:
Anthony Wang 2021-12-08 12:32:27 -06:00
parent e339bd98fd
commit 9e38c72d03
Signed by: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -1,7 +1,10 @@
;; Common Lisp
(defun gcd (a b)
(if (> b 0) (gcd b (mod a b)) a)
(require '#:package-locks)
(ext:without-package-locks
(defun gcd (a b)
(if (> b 0) (gcd b (mod a b)) a)
)
)
(princ "test")