Skip to content

Commit

Permalink
Fixed logic-tutorial.tut2/appendo
Browse files Browse the repository at this point in the history
  • Loading branch information
ykomatsu committed Jul 21, 2012
1 parent f7e0798 commit 2209ddb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -310,7 +310,7 @@ Open <code>src/logic-tutorial/tut2.clj</code>. You'll find the definition for <c
((== l1 ()) (== l2 o))
((exist [a d r]
(conso a d l1)
(conso a r l2)
(conso a r o)
(appendo d l2 r)))))
```

Expand Down
4 changes: 2 additions & 2 deletions src/logic_tutorial/tut2.clj
Expand Up @@ -7,5 +7,5 @@
((== l1 ()) (== l2 o))
((exist [a d r]
(conso a d l1)
(conso a r l2)
(appendo d l2 r)))))
(conso a r o)
(appendo d l2 r)))))

0 comments on commit 2209ddb

Please sign in to comment.