added code template
This commit is contained in:
21
CodeTemplate.py
Normal file
21
CodeTemplate.py
Normal 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()
|
||||
Reference in New Issue
Block a user