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

Fix typos in README example #108

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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