mirror of
https://github.com/kingomarnajjar/ChatDev.git
synced 2026-07-26 06:37:30 +10:00
11 lines
No EOL
335 B
Python
11 lines
No EOL
335 B
Python
'''
|
|
This is the main file for the typing practice software.
|
|
'''
|
|
from typing_practice import TypingPractice
|
|
from progress_tracker import ProgressTracker
|
|
def main():
|
|
progress_tracker = ProgressTracker()
|
|
typing_practice = TypingPractice(progress_tracker)
|
|
typing_practice.start()
|
|
if __name__ == "__main__":
|
|
main() |