fix documentation
[fp.git] / Logic.lc
index 8193a34..7ed9ed5 100644 (file)
--- a/Logic.lc
+++ b/Logic.lc
@@ -1,5 +1,5 @@
 True=\x y.x
 False=\x y.y
-And=\a b.((a b) False)
+And=\a b.a b False
 If=\x.x
-PrintBool=\x.(((If x) TRUE) FALSE)
+PrintBool=\x.If x TRUE FALSE