diff options
Diffstat (limited to 'random_status.py')
| -rw-r--r-- | random_status.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/random_status.py b/random_status.py new file mode 100644 index 0000000..171467f --- /dev/null +++ b/random_status.py @@ -0,0 +1,7 @@ +import sys +import random + +if __name__ == "__main__": + status = random.randrange(-2_000_000, 2_000_000) + print(status) + sys.exit(status) |
