Update Foxsays w/ README

This commit is contained in:
2025-09-13 21:22:37 -04:00
parent 3998dd807d
commit 6e7db90d1c
5 changed files with 113 additions and 4 deletions

20
cs412_code_template.py Normal file
View File

@@ -0,0 +1,20 @@
"""
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()