Spaces:
Sleeping
Sleeping
Create run.py
Browse files
run.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import main
|
| 2 |
+
|
| 3 |
+
directory = "./app"
|
| 4 |
+
|
| 5 |
+
purpose = """A terminal based game
|
| 6 |
+
- the user must guess a number between 0-100
|
| 7 |
+
- the game will reply if the number is higher or lower
|
| 8 |
+
"""
|
| 9 |
+
|
| 10 |
+
main.run(purpose, directory)
|