diff --git a/some_code_file.py b/some_code_file.py index 3db9333..06028c9 100644 --- a/some_code_file.py +++ b/some_code_file.py @@ -1 +1,4 @@ -print(5) +def print_5(): + print(5) + +print_5()