Files
CS412-Applied-Algorithms/cs412_code_template.py
2025-09-13 21:22:37 -04:00

21 lines
373 B
Python

"""
name: Your name(s) here
Honor Code and Acknowledgments:
This work complies with the JMU Honor Code.
Comments here on your code and submission.
"""
# All modules for CS 412 must include a main method that allows it
# to imported and invoked from other python scripts
def main():
# your code here
pass
if __name__ == "__main__":
main()