PyConstants/README.md

11 lines
128 B
Markdown
Raw Permalink Normal View History

2021-05-10 23:30:59 +02:00
# PyConstants
2021-05-11 22:21:22 +02:00
Adds constants in python
2021-05-10 23:30:59 +02:00
2021-05-11 22:21:22 +02:00
# Usage
```
from pyconstants import const
2021-05-10 23:30:59 +02:00
2021-05-11 22:21:22 +02:00
const .a = 5
a = 7 # Raises SyntaxError
```