added code template

This commit is contained in:
2026-03-03 17:45:34 -05:00
parent 404b653bd6
commit 7f9e88d7b6
2 changed files with 36 additions and 7 deletions

21
CodeTemplate.py Normal file
View File

@@ -0,0 +1,21 @@
######################################
# DCS 229 --
# short description of file
# Date:
# Name:
# Resources Used:
##########################################
# import statement to support more type hints
from __future__ import annotations
#### Write your class here
### write your tests in main function
def main():
pass
# only execute when you run this file directily
if __name__ == "__main__":
main()