-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
24 lines (18 loc) · 823 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# /*********************************************************************************************/
# / Date Created: 2024-03-05
# / Programmer: Yamil Padilla
# / Project: Internal projects template
# / Purpose: Provide a reference to the rest of the team for how to structure and work a project
# / References: https://github.com/HHS/acf-datasurge-standards/blob/feat/standards-version-1
# /*********************************************************************************************/
def console_printing_fcn(the_string: str) -> None:
"""Simple function that prints a string.
Args:
-----
the_string (str): The string to print.
Returns:
--------
None: This function doesn't return anything, only prints to console.
"""
print(the_string)
console_printing_fcn("Hello World")