Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
Fix typos in README example
Browse files Browse the repository at this point in the history
  • Loading branch information
starswap authored Jan 18, 2024
1 parent 78df92b commit 958a51b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ You should now be able to open Visual Studio and run Z3 with its Python binding.

To test, you can run:
```python
from x3 import *
from z3 import *
x = Real('x')
y = Real('y)
y = Real('y')
s = Solver()
s.add(x + y > 5, x > 1, y > 1)
print(s.check())
Expand Down

0 comments on commit 958a51b

Please sign in to comment.