PyConstants/ProofOfConcept/runme.py

9 lines
116 B
Python

from const import const
# Create a new constant
const .a = 5
print(a)
# Let's try to assign something to it
a = 6