We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43baa6c commit 377010eCopy full SHA for 377010e
readme.md
@@ -16,7 +16,7 @@ and then you can build up larger expressions using code like
16
17
Then the objects themselves allow the following:
18
19
-<code>
+<pre>
20
x = SYMBOL("x")
21
y = SYMBOL("y")
22
@@ -25,7 +25,7 @@ Then the objects themselves allow the following:
25
(x | y).eval({"x", "y")) == True
26
(~x).eval({"x")) == False
27
(y).eval({"x")) == False
28
-</code>
+</pre>
29
30
The code is very reliable due to its simplicity, and you can read
31
[test_basic.py](./test_basic.py) to see its basic operation.
0 commit comments