Browse Source

Fix euclid for argument of zero

Lily Carpenter 9 years ago
parent
commit
1fa7aa1eaf
2 changed files with 12 additions and 4 deletions
  1. 6 1
      .gitignore
  2. 6 3
      chapter-1/euclid.lisp

+ 6 - 1
.gitignore

@@ -1,5 +1,5 @@
1 1
 
2
-# Created by https://www.gitignore.io/api/linux,emacs
2
+# Created by https://www.gitignore.io/api/linux,emacs,commonlisp
3 3
 
4 4
 ### Linux ###
5 5
 *~
@@ -44,3 +44,8 @@ tramp
44 44
 
45 45
 # cask packages
46 46
 .cask/
47
+
48
+### CommonLisp ###
49
+*.FASL
50
+*.fasl
51
+*.lisp-temp

File diff suppressed because it is too large
+ 6 - 3
chapter-1/euclid.lisp