21 lines
415 B
Python
21 lines
415 B
Python
######################################
|
|
# 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() |